From 2d6b9047124c4d53e472b13ae13adb31159f68f2 Mon Sep 17 00:00:00 2001 From: pdontthink Date: Mon, 1 Oct 2007 07:59:08 +0000 Subject: [PATCH] Move getSig, which can produce error output, after the point where the template system is fully initialized git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@12715 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- include/load_prefs.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/load_prefs.php b/include/load_prefs.php index 88fb9531..2774b7cc 100644 --- a/include/load_prefs.php +++ b/include/load_prefs.php @@ -157,9 +157,6 @@ $reply_focus = getPref($data_dir, $username, 'reply_focus', ''); $left_refresh = getPref($data_dir, $username, 'left_refresh', 600 ); $left_refresh = strtolower($left_refresh); -/* Load up the Signature file */ -$signature_abs = $signature = getSig($data_dir, $username, 'g'); - /* Message Highlighting Rules */ $message_highlight_list = array(); @@ -434,3 +431,6 @@ $icon_theme_path = (!$use_icons || $icon_theme=='none') ? NULL : ($icon_theme == $default_icon_theme_path = (!$use_icons || $default_icon_theme=='none') ? NULL : ($default_icon_theme == 'template' ? SM_PATH . Template::calculate_template_images_directory($sTemplateID) : $default_icon_theme); $fallback_icon_theme_path = (!$use_icons || $fallback_icon_theme=='none') ? NULL : ($fallback_icon_theme == 'template' ? SM_PATH . Template::calculate_template_images_directory($sTemplateID) : $fallback_icon_theme); +/* Load up the Signature file */ +$signature_abs = $signature = getSig($data_dir, $username, 'g'); + -- 2.25.1