dmitry          Tue Nov 15 10:21:47 2005 EDT

  Modified files:              
    /php-src/ext/xsl    php_xsl.c 
    /php-src/ext/dom    php_dom.c 
    /php-src/ext/mysqli mysqli.c 
    /php-src/ext/xmlreader      php_xmlreader.c 
  Log:
  Allow recursive calls to __get/__set for different properties
  
  
http://cvs.php.net/diff.php/php-src/ext/xsl/php_xsl.c?r1=1.33&r2=1.34&ty=u
Index: php-src/ext/xsl/php_xsl.c
diff -u php-src/ext/xsl/php_xsl.c:1.33 php-src/ext/xsl/php_xsl.c:1.34
--- php-src/ext/xsl/php_xsl.c:1.33      Mon Nov 14 16:52:25 2005
+++ php-src/ext/xsl/php_xsl.c   Tue Nov 15 10:21:42 2005
@@ -16,7 +16,7 @@
   +----------------------------------------------------------------------+
 */
 
-/* $Id: php_xsl.c,v 1.33 2005/11/14 21:52:25 tony2001 Exp $ */
+/* $Id: php_xsl.c,v 1.34 2005/11/15 15:21:42 dmitry Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include "config.h"
@@ -120,8 +120,7 @@
 
        intern = emalloc(sizeof(xsl_object));
        intern->std.ce = class_type;
-       intern->std.in_get = 0;
-       intern->std.in_set = 0;
+       intern->std.guards = NULL;
        intern->ptr = NULL;
        intern->prop_handler = NULL;
        intern->parameter = NULL;
http://cvs.php.net/diff.php/php-src/ext/dom/php_dom.c?r1=1.82&r2=1.83&ty=u
Index: php-src/ext/dom/php_dom.c
diff -u php-src/ext/dom/php_dom.c:1.82 php-src/ext/dom/php_dom.c:1.83
--- php-src/ext/dom/php_dom.c:1.82      Mon Nov 14 16:52:19 2005
+++ php-src/ext/dom/php_dom.c   Tue Nov 15 10:21:44 2005
@@ -18,7 +18,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: php_dom.c,v 1.82 2005/11/14 21:52:19 tony2001 Exp $ */
+/* $Id: php_dom.c,v 1.83 2005/11/15 15:21:44 dmitry Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include "config.h"
@@ -941,8 +941,7 @@
 
        intern = emalloc(sizeof(dom_object));
        intern->std.ce = class_type;
-       intern->std.in_get = 0;
-       intern->std.in_set = 0;
+       intern->std.guards = NULL;
        intern->ptr = NULL;
        intern->prop_handler = NULL;
        intern->document = NULL;
http://cvs.php.net/diff.php/php-src/ext/mysqli/mysqli.c?r1=1.76&r2=1.77&ty=u
Index: php-src/ext/mysqli/mysqli.c
diff -u php-src/ext/mysqli/mysqli.c:1.76 php-src/ext/mysqli/mysqli.c:1.77
--- php-src/ext/mysqli/mysqli.c:1.76    Wed Oct 12 09:33:33 2005
+++ php-src/ext/mysqli/mysqli.c Tue Nov 15 10:21:46 2005
@@ -15,7 +15,7 @@
   | Author: Georg Richter <[EMAIL PROTECTED]>                                |
   +----------------------------------------------------------------------+
 
-  $Id: mysqli.c,v 1.76 2005/10/12 13:33:33 tony2001 Exp $ 
+  $Id: mysqli.c,v 1.77 2005/11/15 15:21:46 dmitry Exp $ 
 */
 
 #ifdef HAVE_CONFIG_H
@@ -346,8 +346,7 @@
        intern = emalloc(sizeof(mysqli_object));
        memset(intern, 0, sizeof(mysqli_object));
        intern->zo.ce = class_type;
-       intern->zo.in_get = 0;
-       intern->zo.in_set = 0;
+       intern->zo.guards = NULL;
        intern->ptr = NULL;
        intern->valid = 0;
        intern->prop_handler = NULL;
http://cvs.php.net/diff.php/php-src/ext/xmlreader/php_xmlreader.c?r1=1.18&r2=1.19&ty=u
Index: php-src/ext/xmlreader/php_xmlreader.c
diff -u php-src/ext/xmlreader/php_xmlreader.c:1.18 
php-src/ext/xmlreader/php_xmlreader.c:1.19
--- php-src/ext/xmlreader/php_xmlreader.c:1.18  Mon Nov 14 16:52:26 2005
+++ php-src/ext/xmlreader/php_xmlreader.c       Tue Nov 15 10:21:47 2005
@@ -16,7 +16,7 @@
   +----------------------------------------------------------------------+
 */
 
-/* $Id: php_xmlreader.c,v 1.18 2005/11/14 21:52:26 tony2001 Exp $ */
+/* $Id: php_xmlreader.c,v 1.19 2005/11/15 15:21:47 dmitry Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include "config.h"
@@ -353,8 +353,7 @@
 
        intern = emalloc(sizeof(xmlreader_object));
        intern->std.ce = class_type;
-       intern->std.in_get = 0;
-       intern->std.in_set = 0;
+       intern->std.guards = NULL;
        intern->ptr = NULL;
        intern->schema = NULL;
        intern->prop_handler = &xmlreader_prop_handlers;

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

Reply via email to