From: pdontthink Date: Sun, 6 Jan 2008 02:58:16 +0000 (+0000) Subject: avoid E_STRICT errors X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=0e525861899c6a4d93c424a5a19c249841889cd9;p=squirrelmail.git avoid E_STRICT errors git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@12869 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- 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 */