aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/utf
diff options
context:
space:
mode:
authorDavid M <davidmj@users.sourceforge.net>2007-08-05 13:35:23 +0000
committerDavid M <davidmj@users.sourceforge.net>2007-08-05 13:35:23 +0000
commita9ee9fbddc74114d2bfd37b5ff6879bbe2dd0cb5 (patch)
treed60858cb45f0b519968a683fd5bb31fc81b7cc96 /phpBB/includes/utf
parent5d5df25f758ebec42d5202e97bfa3cc3c026b281 (diff)
downloadforums-a9ee9fbddc74114d2bfd37b5ff6879bbe2dd0cb5.tar
forums-a9ee9fbddc74114d2bfd37b5ff6879bbe2dd0cb5.tar.gz
forums-a9ee9fbddc74114d2bfd37b5ff6879bbe2dd0cb5.tar.bz2
forums-a9ee9fbddc74114d2bfd37b5ff6879bbe2dd0cb5.tar.xz
forums-a9ee9fbddc74114d2bfd37b5ff6879bbe2dd0cb5.zip
another thing was never included, now it is
git-svn-id: file:///svn/phpbb/trunk@8006 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/utf')
-rw-r--r--phpBB/includes/utf/utf_normalizer.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/phpBB/includes/utf/utf_normalizer.php b/phpBB/includes/utf/utf_normalizer.php
index 8b5cf5a993..e59863199d 100644
--- a/phpBB/includes/utf/utf_normalizer.php
+++ b/phpBB/includes/utf/utf_normalizer.php
@@ -240,6 +240,13 @@ class utf_normalizer
include($phpbb_root_path . 'includes/utf/data/utf_normalizer_common.' . $phpEx);
}
+ // Load the canonical composition table
+ if (!isset($utf_canonical_comp))
+ {
+ global $phpbb_root_path, $phpEx;
+ include($phpbb_root_path . 'includes/utf/data/utf_canonical_comp.' . $phpEx);
+ }
+
// Buffer the last ASCII char before the UTF-8 stuff if applicable
$tmp = '';
$i = $tmp_pos = $last_cc = 0;