summaryrefslogtreecommitdiff
path: root/ext/xsl
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2006-12-30 02:28:15 +0000
committerIlia Alshanetsky <iliaa@php.net>2006-12-30 02:28:15 +0000
commit7f376183f8fd8a29550c30d80d4fae43c27ebdce (patch)
tree4bc79f6b5e2d98459884b51b4816200205c6febe /ext/xsl
parent78d8808f42b74d4f0cae79a906a603e64f6065cb (diff)
downloadphp-git-7f376183f8fd8a29550c30d80d4fae43c27ebdce.tar.gz
C++ comment
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 3ffc5ed818..954c842cf7 100644
--- a/ext/xsl/xsltprocessor.c
+++ b/ext/xsl/xsltprocessor.c
@@ -268,7 +268,7 @@ static void xsl_ext_function_php(xmlXPathParserContextPtr ctxt, int nargs, int t
} 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);
- // Push an empty string, so that we at least have an xslt result...
+ /* Push an empty string, so that we at least have an xslt result... */
valuePush(ctxt, xmlXPathNewString(""));
} else {
result = zend_call_function(&fci, NULL TSRMLS_CC);