]> granicus.if.org Git - php/commitdiff
- If user error handler returns "false" then we relay to the built in error
authorAndi Gutmans <andi@php.net>
Tue, 1 Jun 2004 11:45:46 +0000 (11:45 +0000)
committerAndi Gutmans <andi@php.net>
Tue, 1 Jun 2004 11:45:46 +0000 (11:45 +0000)
  handler

Zend/zend.c

index b637538c5a6aa08e2a88a76a38340884b2c40059..377ab99801c587cd7797d9b19f8bc95b30429aaf 100644 (file)
@@ -974,7 +974,7 @@ ZEND_API void zend_error(int type, const char *format, ...)
 
                        if (call_user_function_ex(CG(function_table), NULL, orig_user_error_handler, &retval, 5, params, 1, NULL TSRMLS_CC)==SUCCESS) {
                                if (retval) {
-                                       if (Z_TYPE_P(retval) != IS_NULL && !zend_is_true(retval)) {
+                                       if (Z_TYPE_P(retval) == IS_BOOL && Z_LVAL_P(retval) == 0) {
                                                zend_error_cb(type, error_filename, error_lineno, format, args);
                                        }
                                        zval_ptr_dtor(&retval);