diff options
author | foobar <sniper@php.net> | 2005-01-18 11:53:49 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2005-01-18 11:53:49 +0000 |
commit | 05039431503ddc993a421385cb0e4482e77cd24f (patch) | |
tree | 5e7ce6a3bfe72cff7571a2211ca2ab1c6c9e9468 | |
parent | 197711bb7d76f3cb3f5e850c3b1022ba1c84d370 (diff) | |
download | php-git-05039431503ddc993a421385cb0e4482e77cd24f.tar.gz |
- Sanitize output
-rw-r--r-- | tests/lang/bug30726.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lang/bug30726.phpt b/tests/lang/bug30726.phpt index f979e9a697..79aeff7d26 100644 --- a/tests/lang/bug30726.phpt +++ b/tests/lang/bug30726.phpt @@ -2,7 +2,7 @@ Bug #30726 (-.1 like numbers are not being handled correctly) --FILE-- <?php -echo (int) is_float('-.1' * 2); +echo (int) is_float('-.1' * 2), "\n"; ?> --EXPECT-- 1 |