summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2004-12-16 22:39:39 +0000
committerIlia Alshanetsky <iliaa@php.net>2004-12-16 22:39:39 +0000
commit77c03959682b50ff29556de2997e91df7d846d53 (patch)
tree5675cc7b0b984953ecde7389e6132fa56b2bc13e
parent1c23efeff464ff525fb04d6e6faf2363a271b033 (diff)
downloadphp-git-77c03959682b50ff29556de2997e91df7d846d53.tar.gz
Fixed bug #31087 (broken php_url_encode_hash macro).
-rw-r--r--ext/standard/php_http.h2
1 files changed, 1 insertions, 1 deletions
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);