summaryrefslogtreecommitdiff
path: root/ext/standard/html.c
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2003-01-24 16:29:40 +0000
committerIlia Alshanetsky <iliaa@php.net>2003-01-24 16:29:40 +0000
commit38ad0e91046fc7bd882f235491a275271897ccf7 (patch)
tree649b2075834b0aee3bfb2e4141e6f9c408c3caa9 /ext/standard/html.c
parent95bfbfe1c1cad6611a157b7f7c0e909774dd5511 (diff)
downloadphp-git-38ad0e91046fc7bd882f235491a275271897ccf7.tar.gz
zend_error -> php_error_docref.
Diffstat (limited to 'ext/standard/html.c')
-rw-r--r--ext/standard/html.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/html.c b/ext/standard/html.c
index c784deec60..2133ed8b71 100644
--- a/ext/standard/html.c
+++ b/ext/standard/html.c
@@ -703,7 +703,7 @@ PHPAPI char *php_unescape_html_entities(unsigned char *old, int oldlen, int *new
/* When we have MBCS entities in the tables above, this will need to handle it */
if (k > 0xff) {
- zend_error(E_WARNING, "cannot yet handle MBCS in html_entity_decode()!");
+ php_error_docref(NULL TSRMLS_CC, E_WARNING, "cannot yet handle MBCS!");
}
replacement[0] = k;
replacement[1] = '\0';