I think the module may be fetching hooks data for 6 even though it's running on 5.

I filed http://drupal.org/node/249513 a while ago, but I'm also seeing the wrong parameters for hook_form_alter and a hook_mail which according to API isn't in D5.

Comments

joachim’s picture

Status: Active » Needs review

The culprit is this line:

/**
 * Version of hook info to retrieve 
 */
define('MODULE_BUILDER_VERSION', 'HEAD');

For D5, should be:

define('MODULE_BUILDER_VERSION', 'DRUPAL-5');

and D6, I'm guessing it should be this:

define('MODULE_BUILDER_VERSION', 'DRUPAL-6');

joachim’s picture

Status: Needs review » Active

Fix committed to CVS for D5.

I can't even find where the D6 version stores the URL to get the hook definitions from...

joachim’s picture

Status: Active » Fixed

Marking as fixed. Can file another issue or reopen if this is a problem in D6.

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.