diff options
author | Antony Dovgal <tony2001@php.net> | 2007-07-11 13:27:49 +0000 |
---|---|---|
committer | Antony Dovgal <tony2001@php.net> | 2007-07-11 13:27:49 +0000 |
commit | 40f32634c24722f2295f6bb6ca6675558f111fc4 (patch) | |
tree | 6bbc767a59ab60fffdd5cf7a06f1bfa625bf5678 /ext/reflection/php_reflection.c | |
parent | 1ad841d53a48cfb411d9ea33955b756abe315d2c (diff) | |
download | php-git-40f32634c24722f2295f6bb6ca6675558f111fc4.tar.gz |
MFH: fix copy/paste type and bug #41962
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 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; |