diff options
author | David M <davidmj@users.sourceforge.net> | 2006-12-28 20:46:15 +0000 |
---|---|---|
committer | David M <davidmj@users.sourceforge.net> | 2006-12-28 20:46:15 +0000 |
commit | 8914025c39a306bc0617f4c2353d744e7e538029 (patch) | |
tree | 00572d5909dff1d48af74b7b76eb93df0f172c27 /phpBB | |
parent | 2dfbf0da8edf3ebe31cc8051ec87e2defdb50775 (diff) | |
download | forums-8914025c39a306bc0617f4c2353d744e7e538029.tar forums-8914025c39a306bc0617f4c2353d744e7e538029.tar.gz forums-8914025c39a306bc0617f4c2353d744e7e538029.tar.bz2 forums-8914025c39a306bc0617f4c2353d744e7e538029.tar.xz forums-8914025c39a306bc0617f4c2353d744e7e538029.zip |
#6646
git-svn-id: file:///svn/phpbb/trunk@6823 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/includes/utf/utf_tools.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/includes/utf/utf_tools.php b/phpBB/includes/utf/utf_tools.php index b4edff53f5..d3cad34fd1 100644 --- a/phpBB/includes/utf/utf_tools.php +++ b/phpBB/includes/utf/utf_tools.php @@ -815,7 +815,7 @@ function utf8_recode($string, $encoding) } // SJIS - if (preg_match('/sjis(?:[_ -]?win)?|(?:cp|ibm)[_ -]?932|shift[_ -]?jis/i', $encoding) + if (preg_match('/sjis(?:[_ -]?win)?|(?:cp|ibm)[_ -]?932|shift[_ -]?jis/i', $encoding)) { if (!function_exists('sjis')) { @@ -829,7 +829,7 @@ function utf8_recode($string, $encoding) } // EUC_KR - if (preg_match('/euc[_ -]?kr/i', $encoding) + if (preg_match('/euc[_ -]?kr/i', $encoding)) { if (!function_exists('euc_kr')) { @@ -843,7 +843,7 @@ function utf8_recode($string, $encoding) } // BIG-5 - if (preg_match('/big[_ -]?5/i', $encoding) + if (preg_match('/big[_ -]?5/i', $encoding)) { if (!function_exists('big5')) { |