summaryrefslogtreecommitdiff
path: root/ext/standard/tests/file/bug12556.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/tests/file/bug12556.phpt')
-rw-r--r--ext/standard/tests/file/bug12556.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/tests/file/bug12556.phpt b/ext/standard/tests/file/bug12556.phpt
index 30299899a1..83b39ad782 100644
--- a/ext/standard/tests/file/bug12556.phpt
+++ b/ext/standard/tests/file/bug12556.phpt
@@ -4,8 +4,8 @@ Bug #12556 (fgetcsv() ignores lengths when quotes not closed)
<?php
$fp = fopen(__DIR__."/test.csv", "r");
while($line = fgetcsv($fp, 24)) {
- $line = str_replace("\x0d\x0a", "\x0a", $line);
- var_dump($line);
+ $line = str_replace("\x0d\x0a", "\x0a", $line);
+ var_dump($line);
}
fclose($fp);
?>