summaryrefslogtreecommitdiff
path: root/ext/xsl
diff options
context:
space:
mode:
authorFelipe Pena <felipe@php.net>2009-05-23 14:26:47 +0000
committerFelipe Pena <felipe@php.net>2009-05-23 14:26:47 +0000
commit424c0189918b67f3dc49bdae9702163494d92075 (patch)
treeb176cf3da320297ce144b668b86c27ca2329d536 /ext/xsl
parent79a9229772949b6edf0c171c76cda0c1bd81a855 (diff)
downloadphp-git-424c0189918b67f3dc49bdae9702163494d92075.tar.gz
- Fix error message
Diffstat (limited to 'ext/xsl')
-rw-r--r--ext/xsl/xsltprocessor.c2
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 {