From: Ilia Alshanetsky Date: Thu, 25 May 2006 23:21:01 +0000 (+0000) Subject: MFH: Fixed bug #37569 (WDDX incorrectly encodes high-ascii characters). X-Git-Tag: php-4.4.3~9 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0063ffc124d65b20705a3da3f09f85bf773355e5;p=php MFH: Fixed bug #37569 (WDDX incorrectly encodes high-ascii characters). --- diff --git a/NEWS b/NEWS index 0d02ce22c6..10323164da 100644 --- a/NEWS +++ b/NEWS @@ -2,6 +2,7 @@ PHP 4 NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ?? ??? 2006, Version 4.4.3 - Fixed handling of extremely long paths inside tempnam() function. (Ilia) +- Fixed bug #37569 (WDDX incorrectly encodes high-ascii characters). (Ilia) 21 May 2006, Version 4.4.3RC1 - Added control character checks for cURL extension's open_basedir/safe_mode diff --git a/ext/wddx/tests/bug37569.phpt b/ext/wddx/tests/bug37569.phpt new file mode 100755 index 0000000000..f741d7b029 --- /dev/null +++ b/ext/wddx/tests/bug37569.phpt @@ -0,0 +1,10 @@ +--TEST-- +Bug #37569 (WDDX incorrectly encodes high-ascii characters) +--FILE-- + +--EXPECT-- +
+
diff --git a/ext/wddx/wddx.c b/ext/wddx/wddx.c index a375997556..ef3cea3f42 100644 --- a/ext/wddx/wddx.c +++ b/ext/wddx/wddx.c @@ -22,6 +22,10 @@ #include "config.h" #endif +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include "php.h" #include "php_wddx.h"