From 80079885bb0b0594d9c9dd905e10cddd68feb397 Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Fri, 19 Aug 2005 10:55:05 +0000 Subject: [PATCH] Quick fix (API was changed) --- ext/standard/http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/standard/http.c b/ext/standard/http.c index 2123bc22f4..6032a13cf6 100644 --- a/ext/standard/http.c +++ b/ext/standard/http.c @@ -65,7 +65,7 @@ PHPAPI int php_url_encode_hash_ex(HashTable *ht, smart_str *formstr, 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; } -- 2.50.1