rrichards               Wed Oct  4 12:02:49 2006 UTC

  Modified files:              (Branch: PHP_5_2)
    /php-src/ext/dom    php_dom.c 
  Log:
  fix bug #39035 (Compatibilty issue between DOM and ze1_compatibility_mode
  
http://cvs.php.net/viewvc.cgi/php-src/ext/dom/php_dom.c?r1=1.73.2.12.2.7&r2=1.73.2.12.2.8&diff_format=u
Index: php-src/ext/dom/php_dom.c
diff -u php-src/ext/dom/php_dom.c:1.73.2.12.2.7 
php-src/ext/dom/php_dom.c:1.73.2.12.2.8
--- php-src/ext/dom/php_dom.c:1.73.2.12.2.7     Mon Aug 14 11:29:15 2006
+++ php-src/ext/dom/php_dom.c   Wed Oct  4 12:02:49 2006
@@ -18,7 +18,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: php_dom.c,v 1.73.2.12.2.7 2006/08/14 11:29:15 rrichards Exp $ */
+/* $Id: php_dom.c,v 1.73.2.12.2.8 2006/10/04 12:02:49 rrichards Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include "config.h"
@@ -551,7 +551,7 @@
        memcpy(&dom_ze1_object_handlers, zend_get_std_object_handlers(), 
sizeof(zend_object_handlers));
        dom_ze1_object_handlers.read_property = dom_read_property;
        dom_ze1_object_handlers.write_property = dom_write_property;
-       dom_object_handlers.get_property_ptr_ptr = dom_get_property_ptr_ptr;
+       dom_ze1_object_handlers.get_property_ptr_ptr = dom_get_property_ptr_ptr;
        dom_ze1_object_handlers.clone_obj = dom_objects_ze1_clone_obj;
        dom_ze1_object_handlers.has_property = dom_property_exists;
 

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to