Closed (fixed)
Project:
Drupal Queue
Version:
6.x-1.x-dev
Component:
Code
Priority:
Minor
Category:
Task
Assigned:
Unassigned
Reporter:
Created:
13 Dec 2009 at 16:25 UTC
Updated:
14 Sep 2010 at 02:30 UTC
Jump to comment: Most recent file
The module calls module_load_include() as module_load_include('inc', 'drupal_queue', 'drupal_queue'); it could call the function as module_load_include('inc', 'drupal_queue') because when the second parameter is not given, the function will set it to the same value of the first parameter.
function module_load_include($type, $module, $name = NULL) {
if (empty($name)) {
$name = $module;
}
// …
}
| Comment | File | Size | Author |
|---|---|---|---|
| #1 | 658688-drupalqueue-moduleloadinclude.patch | 686 bytes | dave reid |
Comments
Comment #1
dave reidTrivial and small cleanup.
Comment #2
dave reidFixed in http://drupal.org/cvs?commit=414332