From 0e0d9c2f8140c84ace54b549613dabbe06984158 Mon Sep 17 00:00:00 2001 From: fidian Date: Tue, 30 Jan 2001 21:05:27 +0000 Subject: [PATCH] Removed pass-by-reference. I think this might break attachment_common. git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@990 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/plugin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/plugin.php b/functions/plugin.php index 35dc6776..1683fad9 100644 --- a/functions/plugin.php +++ b/functions/plugin.php @@ -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); } } } -- 2.25.1