From 46dfa56e23503cad38273097794fb75979fa61a5 Mon Sep 17 00:00:00 2001 From: pdontthink Date: Sun, 14 Sep 2003 05:59:17 +0000 Subject: [PATCH] Fix javascript error git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@5719 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- include/options/display.php | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/include/options/display.php b/include/options/display.php index 1235ca13..49be36c0 100644 --- a/include/options/display.php +++ b/include/options/display.php @@ -19,7 +19,8 @@ define('SMOPT_GRP_MESSAGE', 2); /* Define the optpage load function for the display options page. */ function load_optpage_data_display() { global $theme, $language, $languages, $js_autodetect_results, - $compose_new_win, $default_use_mdn, $squirrelmail_language, $allow_thread_sort; + $compose_new_win, $default_use_mdn, $squirrelmail_language, $allow_thread_sort, + $optmode; /* Build a simple array into which we will build options. */ $optgrps = array(); @@ -99,8 +100,12 @@ function load_optpage_data_display() { SMPREF_JS_OFF => _("Never")) ); - $onLoadScript = "document.forms[0].new_js_autodetect_results.value = '" . SMPREF_JS_ON . "'"; - $js_autodetect_results = SMPREF_JS_OFF; + + if ($optmode != 'submit') + $onLoadScript = 'document.forms[0].new_js_autodetect_results.value = \'' . SMPREF_JS_ON . '\''; + else + $onLoadScript = ''; + $optvals[SMOPT_GRP_GENERAL][] = array( 'name' => 'js_autodetect_results', 'caption' => '', -- 2.25.1