Closed (fixed)
Project:
Drupal Commerce Extra Price Formatters
Version:
7.x-1.0
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
24 Mar 2012 at 15:11 UTC
Updated:
21 May 2012 at 18:00 UTC
On line 266 include function is used in the commerce_extra_price_formatters.module file.
Please use module_load_include instead.
I created a patch file for this.
| Comment | File | Size | Author |
|---|---|---|---|
| commerce_extra_price_formatters.module.patch | 663 bytes | skipyT |
Comments
Comment #1
pebosi commentedPatch works for me. Thanks
Comment #2
farald commentedMe too.
Comment #3
ikos commentedHi,
Thanks for submitting this.
I have been working on a few changes to the module which I need to bundle up into a release. However I'll commit this patch tonight just to clear the problem some of you are experiencing.
kind regards
Richard
Comment #4
skipyT commentedHi,
It would be nice!
Thanks!
Comment #5
r2integrated commentedConfirming patch works. Thanks @skipyT =)
Comment #6
ikos commentedPatch committed. Thanks!
kind regards
Richard
Comment #7
Ivan Simonov commentedmodule_load_include make an extra DB query to find path for module and then call require_once function.
Actually we do not need this path.
We can use just:
require_once('includes/extra_functions.inc');
It works on my installation.
Comment #8
Ivan Simonov commentedOK