diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2003-01-18 19:51:21 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2003-01-18 19:51:21 +0000 |
commit | 7cc28802af018304d9acc003c2a1a641d6c5981d (patch) | |
tree | c7664b51770592c9508eb70fa5158b6fd64fb5ca | |
parent | a7b91019e9b551ff48dd91587674784b7020673f (diff) | |
download | php-git-7cc28802af018304d9acc003c2a1a641d6c5981d.tar.gz |
Changed php_error to php_error_docref.
-rw-r--r-- | ext/xslt/sablot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/xslt/sablot.c b/ext/xslt/sablot.c index 43e761a3d4..b365b6732b 100644 --- a/ext/xslt/sablot.c +++ b/ext/xslt/sablot.c @@ -1797,7 +1797,7 @@ static MH_ERROR error_print(void *user_data, SablotHandle proc, MH_ERROR code, M XSLT_REG_ERRMSG(errmsg, handle); /* Output a warning */ - php_error(E_WARNING, msgbuf); + php_error_docref(NULL TSRMLS_CC, E_WARNING, msgbuf); /* Cleanup */ efree(msgbuf); |