summaryrefslogtreecommitdiff
path: root/roundcubemail/installer/utils.php
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-11-27 11:25:31 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-11-27 11:25:31 +0000
commit0a703a900d3aded9ed1249f313ca604bcc360cf0 (patch)
tree5b396abd9923da0aa64640267fd1f883075264aa /roundcubemail/installer/utils.php
parentc59686be0451ef982536b880e372559696b06683 (diff)
- Allow UTF-8 folder names in config (#1485579)
- Add junk_mbox option configuration in installer (#1485579) git-svn-id: https://svn.roundcube.net/trunk@2094 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/installer/utils.php')
-rw-r--r--roundcubemail/installer/utils.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/installer/utils.php b/roundcubemail/installer/utils.php
index 76a335762..c1775f2bb 100644
--- a/roundcubemail/installer/utils.php
+++ b/roundcubemail/installer/utils.php
@@ -24,7 +24,7 @@ function __autoload($classname)
*/
function Q($string)
{
- return htmlentities($string);
+ return htmlentities($string, ENT_COMPAT, 'UTF-8');
}