From: Derick Rethans Date: Wed, 25 Feb 2004 10:43:36 +0000 (+0000) Subject: - Fixed bug #27391 (typo in Fatal Error message). X-Git-Tag: RELEASE_0_2_0~180 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ca64573e1b96527d56ba7e584a48533b497846bb;p=php - Fixed bug #27391 (typo in Fatal Error message). --- 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); }