diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2004-01-06 20:07:07 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2004-01-06 20:07:07 +0000 |
commit | d4c19ed2d2632337307b984d7825493252dd785f (patch) | |
tree | a2e6f6309767a384946bee09742c1ffa0b801b6a /ext/standard/php_http.h | |
parent | d900d737638380e5d96c8bae9e297b5da868f346 (diff) | |
download | php-git-d4c19ed2d2632337307b984d7825493252dd785f.tar.gz |
Fixed bug #26819 (http_build_query() crashes on NULL output).
Fixed bug #26817 (http_build_query() does not handle private & protected
object properties correctly).
Diffstat (limited to 'ext/standard/php_http.h')
-rw-r--r-- | ext/standard/php_http.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/standard/php_http.h b/ext/standard/php_http.h index 60a52d6d2f..fa798d1d0d 100644 --- a/ext/standard/php_http.h +++ b/ext/standard/php_http.h @@ -27,7 +27,8 @@ PHPAPI int php_url_encode_hash_ex(HashTable *ht, smart_str *formstr, const char *num_prefix, int num_prefix_len, const char *key_prefix, int key_prefix_len, - const char *key_suffix, int key_suffix_len TSRMLS_DC); + const char *key_suffix, int key_suffix_len, + zval *type TSRMLS_DC); #define php_url_encode_hash(ht, formstr) php_url_encode_hash_ex((ht), (formstr), NULL, 0, NULL, 0, NULL, 0 TSRMLS_CC) PHP_FUNCTION(http_build_query); |