From beb1a2f1304e4e6e2c22027bfc08380d75329509 Mon Sep 17 00:00:00 2001 From: pdontthink Date: Tue, 29 Jan 2008 23:08:26 +0000 Subject: [PATCH] Avoid E_STRICT errors git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@12900 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- src/squirrelmail_rpc.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/squirrelmail_rpc.php b/src/squirrelmail_rpc.php index 35969afd..b262f305 100644 --- a/src/squirrelmail_rpc.php +++ b/src/squirrelmail_rpc.php @@ -97,9 +97,8 @@ $oTemplate->header('Cache-Control: no-cache'); * to add in the future. * */ -$handled_by_plugin = boolean_hook_function('squirrelmail_rpc', - $temp=array(&$rpc_action), - 1); +$temp = array(&$rpc_action); +$handled_by_plugin = boolean_hook_function('squirrelmail_rpc', $temp, 1); -- 2.25.1