When you try to use ahah_helper with cck, you get a require_once error, there's a little mistake on the code:
ahah_helper.module, line 144
if (isset($form_state['storage']['#ahah_helper']['file'])) {
require_once($form_state['storage']['#ahah_helper']['#file']);
}
should be
if (isset($form_state['storage']['#ahah_helper']['file'])) {
require_once($form_state['storage']['#ahah_helper']['file']);
}
without the # at the beginning of the 'file' key.
Comments
Comment #1
wim leersI talked with Christhian and he'd like to become a co-maintainer of this module to help getting bugs fixed. Get your CVS application through and you'll become one, Christhian :)
Comment #2
avpadernoI approved Cristhian's application, and granted him access to this project CVS.
Comment #3
cristhian commentedSee http://drupal.org/node/480472