FALSE -> false

TRUE -> true


git-svn-id: file:///svn/phpbb/trunk@6767 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
David M 2006-12-15 02:45:42 +00:00
parent 35ac391fe3
commit c3a2557108

View file

@ -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)";