diff options
author | alecpl <alec@alec.pl> | 2008-11-27 11:25:31 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2008-11-27 11:25:31 +0000 |
commit | 9abd0f0089db877d2f6ec9f3a0b978ef3f11ce86 (patch) | |
tree | 64da0966ad637dedff2942fd09dc37182363831a /installer | |
parent | 64aa248cdb1f7ac712a7860199bc5a08e45df47d (diff) |
- Allow UTF-8 folder names in config (#1485579)
- Add junk_mbox option configuration in installer (#1485579)
Diffstat (limited to 'installer')
-rw-r--r-- | installer/config.php | 16 | ||||
-rw-r--r-- | installer/utils.php | 2 |
2 files changed, 15 insertions, 3 deletions
diff --git a/installer/config.php b/installer/config.php index 13371afac..fef222d8a 100644 --- a/installer/config.php +++ b/installer/config.php @@ -348,7 +348,7 @@ $text_sentmbox = new html_inputfield(array('name' => '_sent_mbox', 'size' => 20, echo $text_sentmbox->show($RCI->getprop('sent_mbox')); ?> -<div>Store sent messages is this folder</div> +<div>Store sent messages in this folder</div> <p class="hint">Leave blank if sent messages should not be stored</p> </dd> @@ -374,9 +374,21 @@ $text_draftsmbox = new html_inputfield(array('name' => '_drafts_mbox', 'size' => echo $text_draftsmbox->show($RCI->getprop('drafts_mbox')); ?> -<div>Store draft messages is this folder</div> +<div>Store draft messages in this folder</div> + +<p class="hint">Leave blank if they should not be stored</p> </dd> +<dt class="propname">junk_mbox</dt> +<dd> +<?php + +$text_junkmbox = new html_inputfield(array('name' => '_junk_mbox', 'size' => 20, 'id' => "cfgjunkmbox")); +echo $text_junkmbox->show($RCI->getprop('junk_mbox')); + +?> +<div>Store spam messages in this folder</div> +</dd> </dl> </fieldset> diff --git a/installer/utils.php b/installer/utils.php index 76a335762..c1775f2bb 100644 --- a/installer/utils.php +++ b/installer/utils.php @@ -24,7 +24,7 @@ function __autoload($classname) */ function Q($string) { - return htmlentities($string); + return htmlentities($string, ENT_COMPAT, 'UTF-8'); } |