summaryrefslogtreecommitdiff
path: root/tests/output
diff options
context:
space:
mode:
authorXinchen Hui <laruence@gmail.com>2015-11-26 12:00:25 +0800
committerXinchen Hui <laruence@gmail.com>2015-11-26 12:00:25 +0800
commit0e91e5fb909591a8d57587eeb19314e4a4ee01d9 (patch)
treedc2f2f625926783118b48cb7ae5422c873e1489d /tests/output
parent2de8915dead83fbefcb50288f5ff1c20c9967510 (diff)
downloadphp-git-0e91e5fb909591a8d57587eeb19314e4a4ee01d9.tar.gz
Fixed test
Diffstat (limited to 'tests/output')
-rw-r--r--tests/output/bug70970.phpt2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/output/bug70970.phpt b/tests/output/bug70970.phpt
index 87cc1b71c3..f87e6f6977 100644
--- a/tests/output/bug70970.phpt
+++ b/tests/output/bug70970.phpt
@@ -4,7 +4,7 @@ Bug #70970 (Segfault when combining error handler with output buffering)
<?php
function exception_error_handler($severity, $message, $file, $line)
{
- throw new Exception($message, 0, $severity, $file, $line);
+ throw new Exception($message, 0);
}
set_error_handler('exception_error_handler');