Removed ereg and ereg_replace calls. Using simple string manipulation.
[squirrelmail.git] / 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)) {
-                $function(&$Data);
+                $function($Data);
             }
          }
       }