dmitry          Fri Aug 19 06:55:05 2005 EDT

  Modified files:              
    /php-src/ext/standard       http.c 
  Log:
  Quick fix (API was changed)
  
  
http://cvs.php.net/diff.php/php-src/ext/standard/http.c?r1=1.14&r2=1.15&ty=u
Index: php-src/ext/standard/http.c
diff -u php-src/ext/standard/http.c:1.14 php-src/ext/standard/http.c:1.15
--- php-src/ext/standard/http.c:1.14    Wed Aug  3 10:08:04 2005
+++ php-src/ext/standard/http.c Fri Aug 19 06:55:05 2005
@@ -16,7 +16,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: http.c,v 1.14 2005/08/03 14:08:04 sniper Exp $ */
+/* $Id: http.c,v 1.15 2005/08/19 10:55:05 dmitry Exp $ */
 
 #include "php_http.h"
 #include "php_ini.h"
@@ -65,7 +65,7 @@
                        char *tmp;
 
                        zend_object *zobj = zend_objects_get_address(type 
TSRMLS_CC);
-                       if (zend_check_property_access(zobj, key TSRMLS_CC) != 
SUCCESS) {
+                       if (zend_check_property_access(zobj, IS_STRING, key 
TSRMLS_CC) != SUCCESS) {
                                /* private or protected property access outside 
of the class */
                                continue;
                        }

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

Reply via email to