mirror of
https://github.com/e107inc/e107.git
synced 2025-04-21 21:21:54 +02:00
Call by reference deprecated
This commit is contained in:
parent
2255a236a9
commit
af0e0f51d2
@ -11,9 +11,9 @@
|
||||
| GNU General Public License (http://gnu.org).
|
||||
|
|
||||
| $Source: /cvs_backup/e107_0.8/e107_handlers/xml_class.php,v $
|
||||
| $Revision: 1.1.1.1 $
|
||||
| $Date: 2006-12-02 04:33:59 $
|
||||
| $Author: mcfly_e107 $
|
||||
| $Revision: 1.2 $
|
||||
| $Date: 2007-01-24 21:21:11 $
|
||||
| $Author: e107steved $
|
||||
+----------------------------------------------------------------------------+
|
||||
*/
|
||||
|
||||
@ -189,7 +189,7 @@ class CXml
|
||||
$this->xml_parser = xml_parser_create( "UTF-8" );
|
||||
|
||||
xml_parser_set_option( $this->xml_parser, XML_OPTION_CASE_FOLDING, false );
|
||||
xml_set_object( $this->xml_parser, &$this );
|
||||
xml_set_object( $this->xml_parser, $this );
|
||||
xml_set_element_handler( $this->xml_parser, "_startElement", "_endElement");
|
||||
xml_set_character_data_handler( $this->xml_parser, "_cData" );
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user