diff options
author | David M <davidmj@users.sourceforge.net> | 2006-11-19 20:26:40 +0000 |
---|---|---|
committer | David M <davidmj@users.sourceforge.net> | 2006-11-19 20:26:40 +0000 |
commit | f78289033236a4c108aae5ad8315c60e5f7dc19b (patch) | |
tree | 6ab5a03969af45f42e698c6cc2b27c542b0f39c3 /phpBB/includes/utf/utf_normalizer.php | |
parent | 33bcb91d05aa43bd248128ca02f247a98f53bff8 (diff) | |
download | forums-f78289033236a4c108aae5ad8315c60e5f7dc19b.tar forums-f78289033236a4c108aae5ad8315c60e5f7dc19b.tar.gz forums-f78289033236a4c108aae5ad8315c60e5f7dc19b.tar.bz2 forums-f78289033236a4c108aae5ad8315c60e5f7dc19b.tar.xz forums-f78289033236a4c108aae5ad8315c60e5f7dc19b.zip |
;-)
git-svn-id: file:///svn/phpbb/trunk@6613 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/utf/utf_normalizer.php')
-rw-r--r-- | phpBB/includes/utf/utf_normalizer.php | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/phpBB/includes/utf/utf_normalizer.php b/phpBB/includes/utf/utf_normalizer.php index 649c6c2249..542c1aeeb8 100644 --- a/phpBB/includes/utf/utf_normalizer.php +++ b/phpBB/includes/utf/utf_normalizer.php @@ -317,9 +317,6 @@ class utf_normalizer { // Current char isn't well-formed or legal: either one or several trailing bytes are missing, or the Unicode char // has been encoded in a five- or six- byte sequence - /** - * @todo $trailing_bytes always == 5? - */ if ($utf_char[0] >= "\xF8") { if ($utf_char[0] < "\xFC") @@ -411,9 +408,6 @@ class utf_normalizer default: // Five- and six- byte sequences do not need being checked for here anymore - /** - * @todo $trailing_bytes always == 5? - */ if ($utf_char > UTF8_MAX) { // Out of the Unicode range |