From: pdontthink Date: Sun, 6 Jan 2008 02:50:48 +0000 (+0000) Subject: avoid E_STRICT errors X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=ddbd13dbf48d3428623e07f611d0156b5fe3c1f2;p=squirrelmail.git avoid E_STRICT errors git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@12866 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- diff --git a/src/options_identities.php b/src/options_identities.php index 087cc0e5..bb9dcaeb 100644 --- a/src/options_identities.php +++ b/src/options_identities.php @@ -156,7 +156,8 @@ function ShowIdentityInfo($title, $identity, $id ) { $return_str .= sti_input( _("E-Mail Address") , sprintf($name, $id, 'email_address'), $identity['email_address'], $bg); $return_str .= sti_input( _("Reply To"), sprintf($name, $id, 'reply_to'), $identity['reply_to'], $bg); $return_str .= sti_textarea( _("Signature"), sprintf($name, $id, 'signature'), $identity['signature'], $bg); - $return_str .= concat_hook_function('options_identities_table', $temp=array(&$bg, &$empty, &$id)); + $temp = array(&$bg, &$empty, &$id); + $return_str .= concat_hook_function('options_identities_table', $temp); $return_str .= ' ' . "\n"; $return_str .= '   ' . "\n"; $return_str .= ' ' . "\n"; @@ -172,7 +173,8 @@ function ShowIdentityInfo($title, $identity, $id ) { } - $return_str .= concat_hook_function('options_identities_buttons', $temp=array(&$empty, &$id)); + $temp = array(&$empty, &$id); + $return_str .= concat_hook_function('options_identities_buttons', $temp); $return_str .= ' ' . "\n"; $return_str .= '' . "\n"; $return_str .= '' . "\n";