diff options
author | David M <davidmj@users.sourceforge.net> | 2006-12-15 02:45:42 +0000 |
---|---|---|
committer | David M <davidmj@users.sourceforge.net> | 2006-12-15 02:45:42 +0000 |
commit | c3a2557108e5cf544c6c49a9ec6e1479f0e3317d (patch) | |
tree | 0ce412a83c9b1c8bd63d183af0de9744f1eed3e0 /phpBB/develop/utf_normalizer_test.php | |
parent | 35ac391fe341288da0abc72707aa9970d7c8a8c8 (diff) | |
download | forums-c3a2557108e5cf544c6c49a9ec6e1479f0e3317d.tar forums-c3a2557108e5cf544c6c49a9ec6e1479f0e3317d.tar.gz forums-c3a2557108e5cf544c6c49a9ec6e1479f0e3317d.tar.bz2 forums-c3a2557108e5cf544c6c49a9ec6e1479f0e3317d.tar.xz forums-c3a2557108e5cf544c6c49a9ec6e1479f0e3317d.zip |
FALSE -> false
TRUE -> true
git-svn-id: file:///svn/phpbb/trunk@6767 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 6dbd09cdda..2026d3d4c8 100644 --- a/phpBB/develop/utf_normalizer_test.php +++ b/phpBB/develop/utf_normalizer_test.php @@ -71,7 +71,7 @@ $test_suite = array( require_once($phpbb_root_path . 'includes/utf/utf_normalizer.' . $phpEx); $i = $n = 0; -$failed = FALSE; +$failed = false; $tested_chars = array(); $fp = fopen($phpbb_root_path . 'develop/NormalizationTest.txt', 'rb'); @@ -127,7 +127,7 @@ while (!feof($fp)) if (strcmp($utf_expected, $utf_result)) { - $failed = TRUE; + $failed = true; $hex_result = utf_to_hexseq($utf_result); echo "\nFAILED $expected == $form($test) ($hex_expected != $hex_result)"; |