From 0e525861899c6a4d93c424a5a19c249841889cd9 Mon Sep 17 00:00:00 2001 From: pdontthink Date: Sun, 6 Jan 2008 02:58:16 +0000 Subject: [PATCH] avoid E_STRICT errors git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@12869 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/mailbox_display.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/functions/mailbox_display.php b/functions/mailbox_display.php index e96dce3e..cf953a7d 100644 --- a/functions/mailbox_display.php +++ b/functions/mailbox_display.php @@ -606,7 +606,8 @@ function prepareMessageList(&$aMailbox, $aProps) { // $onclick, $link_extra, $title, and so forth) // plugins are responsible for sharing nicely (such as for // setting the target, etc) - do_hook('subject_link', $temp=array(&$iPageOffset, &$sSearch, &$aSearch, $aMsg)); + $temp = array(&$iPageOffset, &$sSearch, &$aSearch, $aMsg); + do_hook('subject_link', $temp); } $value = (trim($value)) ? $value : _("(no subject)"); /* add thread indentation */ -- 2.25.1