From cb1bb46658ad0561955b29127d879fc6c73d702a Mon Sep 17 00:00:00 2001 From: pdontthink Date: Fri, 9 Feb 2007 10:39:34 +0000 Subject: [PATCH] Fix mistake - was using echo instead of adding to output string git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@12248 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- plugins/preview_pane/functions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/preview_pane/functions.php b/plugins/preview_pane/functions.php index de9ae313..8bb06b7d 100644 --- a/plugins/preview_pane/functions.php +++ b/plugins/preview_pane/functions.php @@ -148,8 +148,8 @@ function preview_pane_message_list_do() // if someone else asks for it, force the message list to reload // else if ($pp_refresh_top) - echo " if (typeof(parent.right.pp_refresh) != 'undefined')\n" - . " parent.right.pp_refresh()\n\n"; + $output.= " if (typeof(parent.right.pp_refresh) != 'undefined')\n" + . " parent.right.pp_refresh()\n\n"; $output .= " document.location = '" . $base_uri . "plugins/preview_pane/empty_frame.php'\n" -- 2.25.1