diff options
| author | Dmitry Stogov <dmitry@zend.com> | 2014-02-21 20:53:09 +0400 |
|---|---|---|
| committer | Dmitry Stogov <dmitry@zend.com> | 2014-02-21 20:53:09 +0400 |
| commit | 008a42e7c8799fa7885f805b714c16d8e703b35f (patch) | |
| tree | c4b591ed53a1f5f3cf95ef04fa2b28a08cba1a40 /Zend/zend_execute_API.c | |
| parent | c8663929a27c8ad41184e1afe2762c50c5f02d4a (diff) | |
| download | php-git-008a42e7c8799fa7885f805b714c16d8e703b35f.tar.gz | |
Fixed error messages
Diffstat (limited to 'Zend/zend_execute_API.c')
| -rw-r--r-- | Zend/zend_execute_API.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_execute_API.c b/Zend/zend_execute_API.c index dd27e65656..147461f838 100644 --- a/Zend/zend_execute_API.c +++ b/Zend/zend_execute_API.c @@ -815,7 +815,7 @@ int zend_call_function(zend_fcall_info *fci, zend_fcall_info_cache *fci_cache TS if (EX(function_state).function->common.fn_flags & (ZEND_ACC_ABSTRACT|ZEND_ACC_DEPRECATED)) { if (EX(function_state).function->common.fn_flags & ZEND_ACC_ABSTRACT) { - zend_error_noreturn(E_ERROR, "Cannot call abstract method %s::%s()", EX(function_state).function->common.scope->name, EX(function_state).function->common.function_name); + zend_error_noreturn(E_ERROR, "Cannot call abstract method %s::%s()", EX(function_state).function->common.scope->name->val, EX(function_state).function->common.function_name->val); } if (EX(function_state).function->common.fn_flags & ZEND_ACC_DEPRECATED) { zend_error(E_DEPRECATED, "Function %s%s%s() is deprecated", |
