diff options
author | Marcus Boerger <helly@php.net> | 2003-08-23 19:48:52 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2003-08-23 19:48:52 +0000 |
commit | c3d60fd7ff81d0604803868ccdaa74376dbee0bc (patch) | |
tree | 129d614cf2862aa74a85114d7330a9d6f8e25870 /ext/reflection/php_reflection.c | |
parent | 96fa63d6bfec1b2352ae54a4635d8b4fc914fefc (diff) | |
download | php-git-c3d60fd7ff81d0604803868ccdaa74376dbee0bc.tar.gz |
Allow zend_throw_exception() to also set the exception code
Diffstat (limited to 'ext/reflection/php_reflection.c')
-rw-r--r-- | ext/reflection/php_reflection.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/reflection/php_reflection.c b/ext/reflection/php_reflection.c index 2710e83518..278cd3fb76 100644 --- a/ext/reflection/php_reflection.c +++ b/ext/reflection/php_reflection.c @@ -47,7 +47,7 @@ /* Exception throwing macro */ #define _DO_THROW(msg) \ - zend_throw_exception(msg, 1 TSRMLS_CC); \ + zend_throw_exception(msg, 0 TSRMLS_CC); \ return; \ /* Smart string macros */ |