summaryrefslogtreecommitdiff
path: root/tests/basic/enable_post_data_reading_05.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/basic/enable_post_data_reading_05.phpt')
-rw-r--r--tests/basic/enable_post_data_reading_05.phpt2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/basic/enable_post_data_reading_05.phpt b/tests/basic/enable_post_data_reading_05.phpt
index d8efa0129e..f6695f84c4 100644
--- a/tests/basic/enable_post_data_reading_05.phpt
+++ b/tests/basic/enable_post_data_reading_05.phpt
@@ -14,7 +14,7 @@ $f1 = fopen("php://input", "r");
$f2 = fopen("php://input", "r");
while (!feof($f1) && !feof($f2)) {
- echo fgetc($f1), fgetc($f2);
+ echo fgetc($f1), fgetc($f2);
}
?>