summaryrefslogtreecommitdiff
path: root/Zend/tests/bug28377.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug28377.phpt')
-rw-r--r--Zend/tests/bug28377.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/tests/bug28377.phpt b/Zend/tests/bug28377.phpt
index 9d1b43472c..78c865d795 100644
--- a/Zend/tests/bug28377.phpt
+++ b/Zend/tests/bug28377.phpt
@@ -8,14 +8,14 @@ function doit($a, $b)
custom_callback('dereferenced', $trace);
custom_callback('direct', debug_backtrace());
}
-
+
function custom_callback($traceName, $btInfo)
{
echo $traceName ." -- args: ";
echo isset($btInfo[0]['args']) ? count($btInfo[0]['args']) : 'does not exist';
echo "\n";
}
-
+
doit('a','b');
?>
--EXPECT--