From: Antony Dovgal Date: Wed, 11 Jul 2007 13:26:47 +0000 (+0000) Subject: fix typo and bug #41962 X-Git-Tag: BEFORE_IMPORT_OF_MYSQLND~235 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e58c638bc850ce06cf1620614390cf118e904dc6;p=php fix typo and bug #41962 --- diff --git a/ext/reflection/php_reflection.c b/ext/reflection/php_reflection.c index b3965c76c4..b1faaad55a 100644 --- a/ext/reflection/php_reflection.c +++ b/ext/reflection/php_reflection.c @@ -3697,7 +3697,7 @@ ZEND_METHOD(reflection_class, isSubclassOf) case IS_UNICODE: if (zend_u_lookup_class(Z_TYPE_P(class_name), Z_UNIVAL_P(class_name), Z_UNILEN_P(class_name), &pce TSRMLS_CC) == FAILURE) { zend_throw_exception_ex(reflection_exception_ptr, 0 TSRMLS_CC, - "Interface %R does not exist", Z_TYPE_P(class_name), Z_UNIVAL_P(class_name)); + "Class %R does not exist", Z_TYPE_P(class_name), Z_UNIVAL_P(class_name)); return; } class_ce = *pce;