diff options
Diffstat (limited to 'installer/config.php')
-rw-r--r-- | installer/config.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/installer/config.php b/installer/config.php index d090312ed..e51b4bf0a 100644 --- a/installer/config.php +++ b/installer/config.php @@ -485,7 +485,7 @@ echo $check_smtplog->show(intval($RCI->getprop('smtp_log')), array('value' => 1) <legend>Display settings & user prefs</legend> <dl class="configblock" id="cgfblockdisplay"> -<dt class="propname">language</dt> +<dt class="propname">language <span class="userconf">*</span></dt> <dd> <?php @@ -559,7 +559,7 @@ echo $check_htmlcomp->show(intval($RCI->getprop('htmleditor'))); $select_autosave = new html_select(array('name' => '_draft_autosave', 'id' => 'cfgautosave')); $select_autosave->add('never', 0); -foreach (array(3, 5, 10) as $i => $min) +foreach (array(1, 3, 5, 10) as $i => $min) $select_autosave->add("$min min", $min*60); echo $select_autosave->show(intval($RCI->getprop('draft_autosave'))); |