diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2007-06-08 07:36:02 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2007-06-08 07:36:02 +0000 |
commit | 3dc51a99c160a599afeb2d8fb739407dfb382124 (patch) | |
tree | cce1a4212d259386a4f54672cdfd423a37613f4d /phpBB/includes/utf/data/recode_basic.php | |
parent | 08e34f03b3dd6b80aec15dad3332ffdeb0204542 (diff) | |
download | forums-3dc51a99c160a599afeb2d8fb739407dfb382124.tar forums-3dc51a99c160a599afeb2d8fb739407dfb382124.tar.gz forums-3dc51a99c160a599afeb2d8fb739407dfb382124.tar.bz2 forums-3dc51a99c160a599afeb2d8fb739407dfb382124.tar.xz forums-3dc51a99c160a599afeb2d8fb739407dfb382124.zip |
maybe the reason why some boards had problems with special characters on conversions? :/
git-svn-id: file:///svn/phpbb/trunk@7724 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/utf/data/recode_basic.php')
-rw-r--r-- | phpBB/includes/utf/data/recode_basic.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/includes/utf/data/recode_basic.php b/phpBB/includes/utf/data/recode_basic.php index 2fc7eb5b9a..02e44d3e0d 100644 --- a/phpBB/includes/utf/data/recode_basic.php +++ b/phpBB/includes/utf/data/recode_basic.php @@ -447,7 +447,7 @@ function iso_8859_8($string) function iso_8859_9($string) { - static $tranform = array( + static $transform = array( "\xC3\x90" => "\xC4\x9E", "\xC3\x9D" => "\xC4\xB0", "\xC3\x9E" => "\xC5\x9E", @@ -460,7 +460,7 @@ function iso_8859_9($string) function iso_8859_15($string) { - static $tranform = array( + static $transform = array( "\xC2\xA4" => "\xE2\x82\xAC", "\xC2\xA6" => "\xC5\xA0", "\xC2\xA8" => "\xC5\xA1", @@ -1004,7 +1004,7 @@ function cp1252($string) function cp1254($string) { - static $tranform = array( + static $transform = array( "\xC2\x80" => "\xE2\x82\xAC", "\xC2\x82" => "\xE2\x80\x9A", "\xC2\x83" => "\xC6\x92", |