mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
FALSE -> false
TRUE -> true git-svn-id: file:///svn/phpbb/trunk@6767 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
35ac391fe3
commit
c3a2557108
1 changed files with 2 additions and 2 deletions
|
@ -71,7 +71,7 @@ $test_suite = array(
|
||||||
require_once($phpbb_root_path . 'includes/utf/utf_normalizer.' . $phpEx);
|
require_once($phpbb_root_path . 'includes/utf/utf_normalizer.' . $phpEx);
|
||||||
|
|
||||||
$i = $n = 0;
|
$i = $n = 0;
|
||||||
$failed = FALSE;
|
$failed = false;
|
||||||
$tested_chars = array();
|
$tested_chars = array();
|
||||||
|
|
||||||
$fp = fopen($phpbb_root_path . 'develop/NormalizationTest.txt', 'rb');
|
$fp = fopen($phpbb_root_path . 'develop/NormalizationTest.txt', 'rb');
|
||||||
|
@ -127,7 +127,7 @@ while (!feof($fp))
|
||||||
|
|
||||||
if (strcmp($utf_expected, $utf_result))
|
if (strcmp($utf_expected, $utf_result))
|
||||||
{
|
{
|
||||||
$failed = TRUE;
|
$failed = true;
|
||||||
$hex_result = utf_to_hexseq($utf_result);
|
$hex_result = utf_to_hexseq($utf_result);
|
||||||
|
|
||||||
echo "\nFAILED $expected == $form($test) ($hex_expected != $hex_result)";
|
echo "\nFAILED $expected == $form($test) ($hex_expected != $hex_result)";
|
||||||
|
|
Loading…
Add table
Reference in a new issue