I enabled the module and it scribbled the following messages onto the top of my website:-

Warning: Call-time pass-by-reference has been deprecated in /home/robogeek/visforvoltage.org/sites/all/modules/munin/munin_api.module on line 88
Warning: Call-time pass-by-reference has been deprecated in /home/robogeek/visforvoltage.org/sites/all/modules/munin/munin_api.module on line 141

On both lines the code reads:

  module_invoke_all('muninplugin_alter', &$plugins);

Presumably the modules are expected to add information to $plugins ... So the fix won't be as simple as removing the ampersand.

If it makes any difference, I'm running on Pressflow.

Comments

disparil’s picture

Same error with Drupal 6.20 (PHP 5.2)

iamEAP’s picture

Alex Savin’s picture

Status: Active » Closed (fixed)

Should be fixed in 6.x-1.1.

Switched to drupal_alter() function which be used for altering data.