Removed pass-by-reference. I think this might break attachment_common.
authorfidian <fidian@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Tue, 30 Jan 2001 21:05:27 +0000 (21:05 +0000)
committerfidian <fidian@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Tue, 30 Jan 2001 21:05:27 +0000 (21:05 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@990 7612ce4b-ef26-0410-bec9-ea0150e637f0

functions/plugin.php

index 35dc67763d6fadb4d69229fd9904738aa7ba3168..1683fad906d17fce42f0072a0acab742f94e40f4 100644 (file)
@@ -37,7 +37,7 @@
          foreach ($squirrelmail_plugin_hooks[$name] as $id => $function) {
             // Add something to set correct gettext domain for plugin
             if (function_exists($function)) {
          foreach ($squirrelmail_plugin_hooks[$name] as $id => $function) {
             // Add something to set correct gettext domain for plugin
             if (function_exists($function)) {
-                $function(&$Data);
+                $function($Data);
             }
          }
       }
             }
          }
       }