summaryrefslogtreecommitdiff
path: root/installer/config.php
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2009-05-22 18:34:50 +0000
committeralecpl <alec@alec.pl>2009-05-22 18:34:50 +0000
commit569654a8c350de5b34cb65ae561bf95418b15f1c (patch)
treea582d5a99b41919af5775393d72d49502e83401b /installer/config.php
parentaa320ede4b10288542e449bf89bdc8537ee1b6db (diff)
- overwrite default_imap_folders according to *_mbox settings (#1485600) + some small updates
Diffstat (limited to 'installer/config.php')
-rw-r--r--installer/config.php4
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 &amp; 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')));