diff options
author | David M <davidmj@users.sourceforge.net> | 2006-12-15 02:38:14 +0000 |
---|---|---|
committer | David M <davidmj@users.sourceforge.net> | 2006-12-15 02:38:14 +0000 |
commit | 950d67d60e4354f418834ceb100ab2d260611037 (patch) | |
tree | 4aabf9d1e7cbc3eee29e70a673afce29b832a300 /phpBB/develop/utf_normalizer_test.php | |
parent | 837fcd1295bb1872cde70db049bd65b2a98c6121 (diff) | |
download | forums-950d67d60e4354f418834ceb100ab2d260611037.tar forums-950d67d60e4354f418834ceb100ab2d260611037.tar.gz forums-950d67d60e4354f418834ceb100ab2d260611037.tar.bz2 forums-950d67d60e4354f418834ceb100ab2d260611037.tar.xz forums-950d67d60e4354f418834ceb100ab2d260611037.zip |
elseif -> else if
git-svn-id: file:///svn/phpbb/trunk@6765 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/develop/utf_normalizer_test.php')
-rw-r--r-- | phpBB/develop/utf_normalizer_test.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/develop/utf_normalizer_test.php b/phpBB/develop/utf_normalizer_test.php index 63c73c05e4..6dbd09cdda 100644 --- a/phpBB/develop/utf_normalizer_test.php +++ b/phpBB/develop/utf_normalizer_test.php @@ -365,11 +365,11 @@ function cp_to_utf($cp) { return chr(0xF0 | ($cp >> 18)) . chr(0x80 | (($cp >> 12) & 0x3F)) . chr(0x80 | (($cp >> 6) & 0x3F)) . chr(0x80 | ($cp & 0x3F)); } - elseif ($cp > 0x7FF) + else if ($cp > 0x7FF) { return chr(0xE0 | ($cp >> 12)) . chr(0x80 | (($cp >> 6) & 0x3F)) . chr(0x80 | ($cp & 0x3F)); } - elseif ($cp > 0x7F) + else if ($cp > 0x7F) { return chr(0xC0 | ($cp >> 6)) . chr(0x80 | ($cp & 0x3F)); } |