Skip to content

Commit 70239ea

Browse files
committed
Merge branch 'PHP-7.2' into PHP-7.3
* PHP-7.2: Fix #77940: test using outdated mon_thousands_sep for Swedish
2 parents 3e31ae5 + 7ddfe73 commit 70239ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/standard/tests/strings/bug65769.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ foreach ($locales as $locale) {
2727
$lconv['mon_thousands_sep']
2828
);
2929
if ($locale === 'Swedish_Sweden.1252') {
30-
var_dump(in_array($lconv['mon_thousands_sep'], [',', ' ']));
30+
var_dump(in_array($lconv['mon_thousands_sep'], ['.', ' ']));
3131
}
3232
echo '++++++++++++++++++++++', "\n";
3333
}

0 commit comments

Comments
 (0)