summaryrefslogtreecommitdiff
path: root/installer/utils.php
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2008-11-27 11:25:31 +0000
committeralecpl <alec@alec.pl>2008-11-27 11:25:31 +0000
commit9abd0f0089db877d2f6ec9f3a0b978ef3f11ce86 (patch)
tree64da0966ad637dedff2942fd09dc37182363831a /installer/utils.php
parent64aa248cdb1f7ac712a7860199bc5a08e45df47d (diff)
- Allow UTF-8 folder names in config (#1485579)
- Add junk_mbox option configuration in installer (#1485579)
Diffstat (limited to 'installer/utils.php')
-rw-r--r--installer/utils.php2
1 files changed, 1 insertions, 1 deletions
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');
}