summaryrefslogtreecommitdiff
path: root/Zend/tests/bug35017.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug35017.phpt')
-rw-r--r--Zend/tests/bug35017.phpt2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/tests/bug35017.phpt b/Zend/tests/bug35017.phpt
index 9944df55e0..8a747be7e1 100644
--- a/Zend/tests/bug35017.phpt
+++ b/Zend/tests/bug35017.phpt
@@ -13,7 +13,7 @@ try {
} catch(Exception $e) {
echo "This Exception should be caught\n";
}
-function errorHandler($errno, $errstr, $errfile, $errline, $vars) {
+function errorHandler($errno, $errstr, $errfile, $errline) {
throw new Exception('Some Exception');
}
?>