diff options
author | Sebastian Bergmann <sebastian@php.net> | 2004-11-02 13:10:37 +0000 |
---|---|---|
committer | Sebastian Bergmann <sebastian@php.net> | 2004-11-02 13:10:37 +0000 |
commit | 9a92e31cddb727b7bf45bca6d9e2a7f0ce608528 (patch) | |
tree | 233fac3b9657e58e8b41a5b8490ca363768bc59c /Zend/zend_API.c | |
parent | 4a3f24e0e01b7217990e11113d9a561e6af8810d (diff) | |
download | php-git-9a92e31cddb727b7bf45bca6d9e2a7f0ce608528.tar.gz |
Patch by Joe Orton <jorton@redhat.com>.
Diffstat (limited to 'Zend/zend_API.c')
-rw-r--r-- | Zend/zend_API.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_API.c b/Zend/zend_API.c index 0e1ea965d6..7e25ef2857 100644 --- a/Zend/zend_API.c +++ b/Zend/zend_API.c @@ -1397,7 +1397,7 @@ ZEND_API int zend_register_functions(zend_class_entry *scope, zend_function_entr } while (ptr->fname) { if (zend_hash_exists(target_function_table, ptr->fname, strlen(ptr->fname)+1)) { - zend_error(error_type, "Function registration failed - duplicate name - %s", ptr->fname); + zend_error(error_type, "Function registration failed - duplicate name - %s%s%s", scope ? scope->name : "", scope ? "::" : "", ptr->fname); } ptr++; } |