diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2006-10-22 13:32:33 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2006-10-22 13:32:33 +0000 |
commit | 22129be21f3d08a27681e0ac6ba8ad401ed8ba96 (patch) | |
tree | 95b2aba768ebb29a024f96a804d9e4291b286d12 /phpBB/includes/utf | |
parent | 44ea780de626a450e17154e5154f3becbd512476 (diff) | |
download | forums-22129be21f3d08a27681e0ac6ba8ad401ed8ba96.tar forums-22129be21f3d08a27681e0ac6ba8ad401ed8ba96.tar.gz forums-22129be21f3d08a27681e0ac6ba8ad401ed8ba96.tar.bz2 forums-22129be21f3d08a27681e0ac6ba8ad401ed8ba96.tar.xz forums-22129be21f3d08a27681e0ac6ba8ad401ed8ba96.zip |
- now username changes should work as desired
- removed some extract() calls
git-svn-id: file:///svn/phpbb/trunk@6517 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/utf')
-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 cb3e3b69ac..1f9a698163 100644 --- a/phpBB/includes/utf/utf_tools.php +++ b/phpBB/includes/utf/utf_tools.php @@ -901,19 +901,19 @@ function utf8_case_fold($text, $option = 'full') // common is always set if (!isset($uniarray['c'])) { - $uniarray['c'] = include_once($phpbb_root_path . 'includes/utf/data/case_fold_c.' . $phpEx); + $uniarray['c'] = include($phpbb_root_path . 'includes/utf/data/case_fold_c.' . $phpEx); } // only set full if we need to if ($option === 'full' && !isset($uniarray['f'])) { - $uniarray['f'] = include_once($phpbb_root_path . 'includes/utf/data/case_fold_f.' . $phpEx); + $uniarray['f'] = include($phpbb_root_path . 'includes/utf/data/case_fold_f.' . $phpEx); } // only set simple if we need to if ($option !== 'full' && !isset($uniarray['s'])) { - $uniarray['s'] = include_once($phpbb_root_path . 'includes/utf/data/case_fold_s.' . $phpEx); + $uniarray['s'] = include($phpbb_root_path . 'includes/utf/data/case_fold_s.' . $phpEx); } $text = strtr($text, $uniarray['c']); |