From a9ee9fbddc74114d2bfd37b5ff6879bbe2dd0cb5 Mon Sep 17 00:00:00 2001 From: David M Date: Sun, 5 Aug 2007 13:35:23 +0000 Subject: [PATCH] another thing was never included, now it is git-svn-id: file:///svn/phpbb/trunk@8006 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/includes/utf/utf_normalizer.php | 7 +++++++ 1 file changed, 7 insertions(+) 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;