I'm not sure if it has something to do with emptying the cache, but soon after this , I get an Fatal error: Cannot pass parameter 2 by reference in /home/zetnetro/public_html/drupal6/sites/all/modules/zeitgeist/zeitgeist.module on line 433 . Check attachment

CommentFileSizeAuthor
zeitgeist error.gif598.11 KBzet
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

zet’s picture

i resolved this problem changing NULL to $NULL on line 433 of zeitgeist.module
Change this

      _zeitgeist_admin_settings_submit(NULL, NULL); // clear cache
      return $form;
      break;

to this:

      _zeitgeist_admin_settings_submit(NULL, $NULL); // clear cache
      return $form;
      break;

if I revert the changes the problem reappears

fgm’s picture

Assigned: Unassigned » fgm
Status: Active » Postponed (maintainer needs more info)

You cannot validly use $NULL as it is not a defined variable. Would you be using PHP5.3, by any chance ?

fgm’s picture

Status: Postponed (maintainer needs more info) » Fixed

Fixed in today's version 1.9.6.7: it no longer includes the affected code anyway.

zet’s picture

No Frederic , PHP version is 5.2.13 .
Thanks. I will try last dev version.

Status: Fixed » Closed (fixed)

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