iliaa           Thu Dec 16 17:40:46 2004 EDT

  Modified files:              (Branch: PHP_5_0)
    /php-src    NEWS 
    /php-src/ext/standard       php_http.h 
  Log:
  MFH: Fixed bug #31087 (broken php_url_encode_hash macro).
  
  
http://cvs.php.net/diff.php/php-src/NEWS?r1=1.1760.2.163&r2=1.1760.2.164&ty=u
Index: php-src/NEWS
diff -u php-src/NEWS:1.1760.2.163 php-src/NEWS:1.1760.2.164
--- php-src/NEWS:1.1760.2.163   Thu Dec 16 08:06:45 2004
+++ php-src/NEWS        Thu Dec 16 17:40:46 2004
@@ -4,6 +4,7 @@
 - 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)
 
http://cvs.php.net/diff.php/php-src/ext/standard/php_http.h?r1=1.3&r2=1.3.2.1&ty=u
Index: php-src/ext/standard/php_http.h
diff -u php-src/ext/standard/php_http.h:1.3 
php-src/ext/standard/php_http.h:1.3.2.1
--- php-src/ext/standard/php_http.h:1.3 Thu Jan  8 12:32:51 2004
+++ php-src/ext/standard/php_http.h     Thu Dec 16 17:40:46 2004
@@ -16,7 +16,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: php_http.h,v 1.3 2004/01/08 17:32:51 sniper Exp $ */
+/* $Id: php_http.h,v 1.3.2.1 2004/12/16 22:40:46 iliaa Exp $ */
 
 #ifndef PHP_HTTP_H
 #define PHP_HTTP_H
@@ -29,7 +29,7 @@
                                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);
 

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to