]> granicus.if.org Git - php/commitdiff
Fixed bug #31087 (broken php_url_encode_hash macro).
authorIlia Alshanetsky <iliaa@php.net>
Thu, 16 Dec 2004 22:39:39 +0000 (22:39 +0000)
committerIlia Alshanetsky <iliaa@php.net>
Thu, 16 Dec 2004 22:39:39 +0000 (22:39 +0000)
ext/standard/php_http.h

index c97fda4cedbd6d5a37894e844b25b12fa24ace87..8885bc1503d302900865f1bdc0764addef4a185d 100644 (file)
@@ -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);