[phpXML] phpxml 1.N.5 "$this->" patch.
Brought to you by:
bs_php,
nigelswinson
From: <nig...@us...> - 2001-10-08 17:50:08
|
Hmm, it appears that I missed out the "$this->" bit from 6 places in the co= de. Here's the places that you will want to fix from version 1.N.5 if you= can't wait for the next release. ---------------------------------------------------------------------------= -----diff -r1.1 xpath.class.php 219c219 < return setAttributes($absoluteXPath, $aNewAttributes); --- > return $this->setAttributes($absoluteXPath,=20 $aNewAttributes); 221c221 < return setAttributes($absoluteXPath, $attributes); --- > return $this->setAttributes($absoluteXPath,=20 $attributes); 248c248 < return setAttributes($absoluteXPath, $attributes); --- > return $this->setAttributes($absoluteXPath,=20 $attributes); 838c838 < return _setContent($absoluteXPath, $value); --- > return $this->_setContent($absoluteXPath, $value); 854c854 < return _setContent($absoluteXPath, $value, TRUE); --- > return $this->_setContent($absoluteXPath, $value,=20 TRUE); 879c879 < _setContent($absoluteXPath, $newContent); --- > $this->_setContent($absoluteXPath, $newContent);-------------------------= ------------------------------------------------------- Oops :o/ Nigel =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D For the most recent version of phpxml, V1.N.X, and an archive of this list = visit: http://www.sourceforge.net/projects/phpxmldb -- This message has been sent through the <phpXML/> user discussion list. To u= nsubscribe, please visit https://sslsites.de/mailinglisten/user/user@lists.= phpxml.org/ |