Closed (fixed)
Project:
Reports
Version:
5.x-0.x-dev
Component:
Code
Priority:
Critical
Category:
Bug report
Assigned:
Reporter:
Created:
28 Dec 2006 at 20:10 UTC
Updated:
30 Mar 2007 at 02:05 UTC
Line 220 of reports.module reads:
require_once('reports_definitions.inc');
whereas I believe it should read:
require_once(drupal_get_path('module', 'report') .'/reports_definitions.inc');
Comments
Comment #1
harry slaughterI thought using a relative path was OK, but other modules seem to prefer the generated full path. This probably goes back to a performance debate a while back on requires having to search all of %PATH vs not.
So will do full path way.