summaryrefslogtreecommitdiff
path: root/ext/standard/tests/array/bug70713.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/tests/array/bug70713.phpt')
-rw-r--r--ext/standard/tests/array/bug70713.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/tests/array/bug70713.phpt b/ext/standard/tests/array/bug70713.phpt
index 4e2792ab4b..7cd0a0f113 100644
--- a/ext/standard/tests/array/bug70713.phpt
+++ b/ext/standard/tests/array/bug70713.phpt
@@ -8,12 +8,12 @@ class obj
function __tostring()
{
global $arr;
-
+
$arr = 1;
for ($i = 0; $i < 5; $i++) {
$v[$i] = 'hi'.$i;
}
-
+
return 'hi';
}
}