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

wim leers’s picture

I 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 :)

avpaderno’s picture

I approved Cristhian's application, and granted him access to this project CVS.

cristhian’s picture

Status: Active » Closed (duplicate)