diff options
Diffstat (limited to 'ext/xmlrpc/xmlrpc-epi-php.c')
-rw-r--r-- | ext/xmlrpc/xmlrpc-epi-php.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/xmlrpc/xmlrpc-epi-php.c b/ext/xmlrpc/xmlrpc-epi-php.c index 62bc39dba4..5ea2894300 100644 --- a/ext/xmlrpc/xmlrpc-epi-php.c +++ b/ext/xmlrpc/xmlrpc-epi-php.c @@ -66,6 +66,7 @@ #endif #include "php.h" +#include "zend_exceptions.h" #include "ext/standard/info.h" #include "ext/standard/php_string.h" #include "ext/date/php_date.h" @@ -548,7 +549,7 @@ static XMLRPC_VALUE PHP_to_XMLRPC_worker (const char* key, zval* in_val, int dep ht = HASH_OF(&val); if (ht && ht->u.v.nApplyCount > 1) { - php_error_docref(NULL, E_ERROR, "XML-RPC doesn't support circular references"); + zend_throw_error(zend_ce_error, "XML-RPC doesn't support circular references"); return NULL; } |