From: Antony Dovgal Date: Wed, 11 Jul 2007 13:27:49 +0000 (+0000) Subject: MFH: fix copy/paste type and bug #41962 X-Git-Tag: php-5.2.4RC1~182 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=40f32634c24722f2295f6bb6ca6675558f111fc4;p=php MFH: fix copy/paste type and bug #41962 --- diff --git a/ext/reflection/php_reflection.c b/ext/reflection/php_reflection.c index a2d0f7e049..02f8db1144 100644 --- a/ext/reflection/php_reflection.c +++ b/ext/reflection/php_reflection.c @@ -3616,7 +3616,7 @@ ZEND_METHOD(reflection_class, isSubclassOf) case IS_STRING: if (zend_lookup_class(Z_STRVAL_P(class_name), Z_STRLEN_P(class_name), &pce TSRMLS_CC) == FAILURE) { zend_throw_exception_ex(reflection_exception_ptr, 0 TSRMLS_CC, - "Interface %s does not exist", Z_STRVAL_P(class_name)); + "Class %s does not exist", Z_STRVAL_P(class_name)); return; } class_ce = *pce;