From ad5f0b50fad186538d8609604c3582d9a61cbe64 Mon Sep 17 00:00:00 2001 From: Ilia Alshanetsky Date: Thu, 25 May 2006 23:23:15 +0000 Subject: [PATCH] MFB: Fixed bug #37569 (WDDX incorrectly encodes high-ascii characters). --- ext/wddx/tests/bug37569.phpt | 10 ++++++++++ ext/wddx/wddx.c | 4 ++++ 2 files changed, 14 insertions(+) create mode 100755 ext/wddx/tests/bug37569.phpt 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 3562c6e9f8..9eed8bad47 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" #if HAVE_WDDX -- 2.50.1