From: Ilia Alshanetsky Date: Thu, 16 Dec 2004 22:40:46 +0000 (+0000) Subject: MFH: Fixed bug #31087 (broken php_url_encode_hash macro). X-Git-Tag: php-5.0.4RC1~464 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e97d0777db85eda5343559747732faee6265a5dc;p=php MFH: Fixed bug #31087 (broken php_url_encode_hash macro). --- diff --git a/NEWS b/NEWS index 470be46f57..637b018c65 100644 --- a/NEWS +++ b/NEWS @@ -4,6 +4,7 @@ PHP NEWS - Fixed bug #31111 (Compile failure of zend_strtod.c). (Derick) - Fixed bug #31110 (PHP 4.3.10 does not compile on Tru64 UNIX 5.1B). (Derick) - Fixed bug #31107 (Complile failure on Solaris 9 (Intel) and gcc 3.4.3). (Derick) +- Fixed bug #31087 (broken php_url_encode_hash macro). (Ilia) - Fixed bug #31056 (php_std_date() returns invalid formatted date if y2k_compliance is On). (Ilia) diff --git a/ext/standard/php_http.h b/ext/standard/php_http.h index c97fda4ced..8885bc1503 100644 --- a/ext/standard/php_http.h +++ b/ext/standard/php_http.h @@ -29,7 +29,7 @@ PHPAPI int php_url_encode_hash_ex(HashTable *ht, smart_str *formstr, const char *key_prefix, int key_prefix_len, 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) +#define php_url_encode_hash(ht, formstr) php_url_encode_hash_ex((ht), (formstr), NULL, 0, NULL, 0, NULL, 0, NULL TSRMLS_CC) PHP_FUNCTION(http_build_query);