diff options
author | Felipe Pena <felipe@php.net> | 2009-05-23 14:26:47 +0000 |
---|---|---|
committer | Felipe Pena <felipe@php.net> | 2009-05-23 14:26:47 +0000 |
commit | 424c0189918b67f3dc49bdae9702163494d92075 (patch) | |
tree | b176cf3da320297ce144b668b86c27ca2329d536 /ext/xsl/xsltprocessor.c | |
parent | 79a9229772949b6edf0c171c76cda0c1bd81a855 (diff) | |
download | php-git-424c0189918b67f3dc49bdae9702163494d92075.tar.gz |
- Fix error message
Diffstat (limited to 'ext/xsl/xsltprocessor.c')
-rw-r--r-- | ext/xsl/xsltprocessor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/xsl/xsltprocessor.c b/ext/xsl/xsltprocessor.c index e7f76af119..ef925fc7e7 100644 --- a/ext/xsl/xsltprocessor.c +++ b/ext/xsl/xsltprocessor.c @@ -316,7 +316,7 @@ static void xsl_ext_function_php(xmlXPathParserContextPtr ctxt, int nargs, int t php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to call handler %s()", callable); } else if ( intern->registerPhpFunctions == 2 && zend_hash_exists(intern->registered_phpfunctions, callable, strlen(callable) + 1) == 0) { - php_error_docref(NULL TSRMLS_CC, E_WARNING, "Not allowed to call handler '%s()'.", callable); + php_error_docref(NULL TSRMLS_CC, E_WARNING, "Not allowed to call handler '%s()'", callable); /* Push an empty string, so that we at least have an xslt result... */ valuePush(ctxt, xmlXPathNewString("")); } else { |