summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorRui Hirokawa <hirokawa@php.net>2001-07-03 16:59:46 +0000
committerRui Hirokawa <hirokawa@php.net>2001-07-03 16:59:46 +0000
commitf90580caf11ba208f062f0f4c2b202489c2773c9 (patch)
treecc02b4841e627bdc5a1ba4974b56b499f078e62e /ext
parentb18dd1bab3efdc0981b21276b40659b113a091b2 (diff)
downloadphp-git-f90580caf11ba208f062f0f4c2b202489c2773c9.tar.gz
fixed an argument in example of ext/xslt.
Diffstat (limited to 'ext')
-rw-r--r--ext/xslt/README.XSLT-BACKENDS2
1 files changed, 1 insertions, 1 deletions
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" );