From 69fabf5e6d4bf82740bae74fbcbcc248b46707c9 Mon Sep 17 00:00:00 2001 From: pdontthink Date: Sun, 6 Jan 2008 03:16:00 +0000 Subject: [PATCH] avoid E_STRICT errors git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@12871 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- class/template/Template.class.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/class/template/Template.class.php b/class/template/Template.class.php index 284be85b..31244fd6 100644 --- a/class/template/Template.class.php +++ b/class/template/Template.class.php @@ -1420,9 +1420,9 @@ FIXME: We could make the incoming array more complex so it can } else { $aPluginOutput = array(); + $temp = array(&$aPluginOutput, &$this); $aPluginOutput = concat_hook_function('template_construct_' . $file, - $temp=array(&$aPluginOutput, &$this), - TRUE); + $temp, TRUE); $this->assign('plugin_output', $aPluginOutput); //$output = $this->apply_template($template); -- 2.25.1