[Fusionforge-commits] r14817 - trunk/src/common/include

Alain Peyrat aljeux at fusionforge.org
Thu Nov 17 18:29:08 CET 2011


Author: aljeux
Date: 2011-11-17 18:29:08 +0100 (Thu, 17 Nov 2011)
New Revision: 14817

Modified:
   trunk/src/common/include/XhtmlValidator.php
Log:
Drop extra &

Modified: trunk/src/common/include/XhtmlValidator.php
===================================================================
--- trunk/src/common/include/XhtmlValidator.php	2011-11-17 17:28:59 UTC (rev 14816)
+++ trunk/src/common/include/XhtmlValidator.php	2011-11-17 17:29:08 UTC (rev 14817)
@@ -805,7 +805,7 @@
     function XhtmlValidator()
     {
         $this->_parser = xml_parser_create('');
-        xml_set_object($this->_parser, &$this);
+        xml_set_object($this->_parser, $this);
         xml_set_element_handler($this->_parser, 'tagOpen', 'tagClose');
         xml_set_character_data_handler($this->_parser, 'cdata');
         xml_parser_set_option($this->_parser, XML_OPTION_CASE_FOLDING, false);




More information about the Fusionforge-commits mailing list