From: Rui Hirokawa Date: Tue, 3 Jul 2001 16:59:46 +0000 (+0000) Subject: fixed an argument in example of ext/xslt. X-Git-Tag: PRE_TSRM_MERGE_PATCH~285 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f90580caf11ba208f062f0f4c2b202489c2773c9;p=php fixed an argument in example of ext/xslt. --- diff --git a/ext/xslt/README.XSLT-BACKENDS b/ext/xslt/README.XSLT-BACKENDS index 83074a9233..07594ceb64 100644 --- a/ext/xslt/README.XSLT-BACKENDS +++ b/ext/xslt/README.XSLT-BACKENDS @@ -170,7 +170,7 @@ "/_xsl" => $xsl); $xh = xslt_create(); - $data = xslt_process("arg:/_xml", "arg:/_xsl", NULL, $args); + $data = xslt_process($xh, "arg:/_xml", "arg:/_xsl", NULL, $args); xslt_free($xh); print( "The results of the transformation were\n" );