diff options
author | Derick Rethans <derick@php.net> | 2004-02-25 10:43:36 +0000 |
---|---|---|
committer | Derick Rethans <derick@php.net> | 2004-02-25 10:43:36 +0000 |
commit | ca64573e1b96527d56ba7e584a48533b497846bb (patch) | |
tree | 2c444c909c38520342bbc785a26da6083dbed523 /Zend/zend_exceptions.c | |
parent | 184b379fd754f68c3b7cac907d29f4d81616516f (diff) | |
download | php-git-ca64573e1b96527d56ba7e584a48533b497846bb.tar.gz |
- Fixed bug #27391 (typo in Fatal Error message).
Diffstat (limited to 'Zend/zend_exceptions.c')
-rw-r--r-- | Zend/zend_exceptions.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_exceptions.c b/Zend/zend_exceptions.c index cb87476a75..0ec4e0daf4 100644 --- a/Zend/zend_exceptions.c +++ b/Zend/zend_exceptions.c @@ -563,7 +563,7 @@ ZEND_API void zend_throw_exception_object(zval *exception TSRMLS_DC) exception_ce = Z_OBJCE_P(exception); if (!exception_ce || !instanceof_function(exception_ce, default_exception_ce TSRMLS_CC)) { - zend_error(E_ERROR, "Exceptions must valid objects that are derived from class Exception"); + zend_error(E_ERROR, "Exceptions must be valid objects that are derived from class Exception"); } zend_throw_exception_internal(exception TSRMLS_CC); } |