diff options
author | Christian Stocker <chregu@php.net> | 2002-09-09 20:32:49 +0000 |
---|---|---|
committer | Christian Stocker <chregu@php.net> | 2002-09-09 20:32:49 +0000 |
commit | ab40c954fbfe4b094261f1f87a74d70d278dd00f (patch) | |
tree | cce3ed3dc19446e5a4d48cad718fb4a20c21cde1 /ext/domxml/php_domxml.c | |
parent | 2375745ab46249846e0cedd8272dab610258ec4c (diff) | |
download | php-git-ab40c954fbfe4b094261f1f87a74d70d278dd00f.tar.gz |
chregu: Can you please use the new php_error_docref in new code?
Diffstat (limited to 'ext/domxml/php_domxml.c')
-rw-r--r-- | ext/domxml/php_domxml.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/domxml/php_domxml.c b/ext/domxml/php_domxml.c index 7dee8c69b1..ce98a315cc 100644 --- a/ext/domxml/php_domxml.c +++ b/ext/domxml/php_domxml.c @@ -2377,7 +2377,7 @@ PHP_FUNCTION(domxml_node_append_child) } if (!(child->doc == NULL || child->doc == parent->doc)) { - php_error(E_WARNING, "%s(): Can't append node, which is in a different document than the parent node", get_active_function_name(TSRMLS_C)); + php_error_docref("function.domnode-append-child" TSRMLS_CC, E_WARNING, "Can't append node, which is in a different document than the parent node"); RETURN_FALSE; } |