From 8f0f2e1f0d71c9f71c823734200e490e69338869 Mon Sep 17 00:00:00 2001 From: David M Date: Sun, 7 Jan 2007 14:24:01 +0000 Subject: #6828 git-svn-id: file:///svn/phpbb/trunk@6852 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/includes/utf/utf_tools.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'phpBB/includes/utf/utf_tools.php') diff --git a/phpBB/includes/utf/utf_tools.php b/phpBB/includes/utf/utf_tools.php index ec233cf986..3a95c5f35f 100644 --- a/phpBB/includes/utf/utf_tools.php +++ b/phpBB/includes/utf/utf_tools.php @@ -767,7 +767,7 @@ function utf8_recode($string, $encoding) case '7': case '9': case '15': - if (!function_exists('iso_8895_' . $array[1])) + if (!function_exists('iso_8859_' . $array[1])) { if (!file_exists($phpbb_root_path . 'includes/utf/data/recode_basic.' . $phpEx)) { @@ -775,7 +775,7 @@ function utf8_recode($string, $encoding) } include($phpbb_root_path . 'includes/utf/data/recode_basic.' . $phpEx); } - return call_user_func('iso_8895_' . $array[1], $string); + return call_user_func('iso_8859_' . $array[1], $string); break; default: -- cgit v1.2.1