diff options
author | Marcus Boerger <helly@php.net> | 2004-03-28 15:35:01 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2004-03-28 15:35:01 +0000 |
commit | d7cea0945c20ebfe0e9d672124a05bd8d021b5fd (patch) | |
tree | af0cf1d0f36825ee88f43859a9e405d0c6f5b336 | |
parent | 1ece5eb5ad11613f6b637dee4901c7dd7c6abc3d (diff) | |
download | php-git-d7cea0945c20ebfe0e9d672124a05bd8d021b5fd.tar.gz |
Fix XSL (Rob/Marcus)
-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 a285c79831..1f73b3c15a 100644 --- a/ext/xsl/xsltprocessor.c +++ b/ext/xsl/xsltprocessor.c @@ -337,7 +337,7 @@ PHP_FUNCTION(xsl_xsltprocessor_import_stylesheet) std_hnd = zend_get_std_object_handlers(); MAKE_STD_ZVAL(member); ZVAL_STRING(member, "cloneDocument", 0); - cloneDocu = std_hnd->read_property(id, member, 1 TSRMLS_CC); + cloneDocu = std_hnd->read_property(id, member, BP_VAR_IS TSRMLS_CC); if (Z_TYPE_P(cloneDocu) != IS_NULL) { convert_to_long(cloneDocu); clone_docu = Z_LVAL_P(cloneDocu); |