summaryrefslogtreecommitdiff
path: root/roundcubemail/program/lib/utf8.class.php
diff options
context:
space:
mode:
authorthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2006-08-23 21:52:13 +0000
committerthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2006-08-23 21:52:13 +0000
commita6bf50cf3e8d9d49516242947619c97806c30d56 (patch)
tree0421e257b94e6310b316a596a963b0f48ed23727 /roundcubemail/program/lib/utf8.class.php
parent7c32c4b6105671dd5dd902a45d015e1437edeb02 (diff)
Fixed wrong usage of mbstring (Bug #1462439)
git-svn-id: https://svn.roundcube.net/trunk@324 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/lib/utf8.class.php')
-rw-r--r--roundcubemail/program/lib/utf8.class.php8
1 files changed, 7 insertions, 1 deletions
diff --git a/roundcubemail/program/lib/utf8.class.php b/roundcubemail/program/lib/utf8.class.php
index c0bd0a73b..3371c25a8 100644
--- a/roundcubemail/program/lib/utf8.class.php
+++ b/roundcubemail/program/lib/utf8.class.php
@@ -50,7 +50,13 @@ $utf8_maps = array(
"ISO-8859-1" => UTF8_MAP_DIR . "/ISO-8859-1.map",
"ISO-8859-2" => UTF8_MAP_DIR . "/ISO-8859-2.map",
"ISO-8859-3" => UTF8_MAP_DIR . "/ISO-8859-3.map",
- "ISO-8859-4" => UTF8_MAP_DIR . "/ISO-8859-4.map");
+ "ISO-8859-4" => UTF8_MAP_DIR . "/ISO-8859-4.map",
+ "ISO-8859-5" => UTF8_MAP_DIR . "/ISO-8859-5.map",
+ "ISO-8859-6" => UTF8_MAP_DIR . "/ISO-8859-6.map",
+ "ISO-8859-7" => UTF8_MAP_DIR . "/ISO-8859-7.map",
+ "ISO-8859-8" => UTF8_MAP_DIR . "/ISO-8859-8.map",
+ "ISO-8859-9" => UTF8_MAP_DIR . "/ISO-8859-9.map"
+ );
//Error constants
define("ERR_OPEN_MAP_FILE","ERR_OPEN_MAP_FILE");