From 88628a23199df322a259e9bd02ac2a5092116c6b Mon Sep 17 00:00:00 2001 From: Edin Kadribasic Date: Thu, 29 Jul 2004 22:26:52 +0000 Subject: [PATCH] MFH --- NEWS | 1 + ext/gettext/gettext.c | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 81aac4703b..eca3dcd6a0 100644 --- a/NEWS +++ b/NEWS @@ -18,6 +18,7 @@ PHP NEWS - Fixed bug #29340 (win32 build produces invalid php_ifx.dll). (Edin) - Fixed bug #29335 (fetch functions now use MYSQLI_BOTH as default) (Georg) - Fixed bug #29291 (get_class_vars() return names with NULLs). (Marcus) +- Fixed bug #29264 (gettext extension not working). (Edin) - Fixed buf #29258 (variant_date_from_timestamp() does not honour timezone). (Wez) - Fixed bug #29119 (html_entity_decode() misbehaves with UTF-8). (Moriyoshi) diff --git a/ext/gettext/gettext.c b/ext/gettext/gettext.c index 888baa384b..e455b8536a 100644 --- a/ext/gettext/gettext.c +++ b/ext/gettext/gettext.c @@ -27,7 +27,6 @@ #if HAVE_LIBINTL #include -#include #include "ext/standard/info.h" #include "php_gettext.h" @@ -57,6 +56,8 @@ function_entry php_gettext_functions[] = { }; /* }}} */ +#include + zend_module_entry php_gettext_module_entry = { STANDARD_MODULE_HEADER, "gettext", -- 2.50.1