edink Thu Jul 29 18:26:52 2004 EDT Modified files: (Branch: PHP_5_0) /php-src NEWS /php-src/ext/gettext gettext.c Log: MFH http://cvs.php.net/diff.php/php-src/NEWS?r1=1.1760.2.16&r2=1.1760.2.17&ty=u Index: php-src/NEWS diff -u php-src/NEWS:1.1760.2.16 php-src/NEWS:1.1760.2.17 --- php-src/NEWS:1.1760.2.16 Thu Jul 29 17:12:41 2004 +++ php-src/NEWS Thu Jul 29 18:26:52 2004 @@ -18,6 +18,7 @@ - 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) http://cvs.php.net/diff.php/php-src/ext/gettext/gettext.c?r1=1.44&r2=1.44.2.1&ty=u Index: php-src/ext/gettext/gettext.c diff -u php-src/ext/gettext/gettext.c:1.44 php-src/ext/gettext/gettext.c:1.44.2.1 --- php-src/ext/gettext/gettext.c:1.44 Thu Jan 8 03:15:44 2004 +++ php-src/ext/gettext/gettext.c Thu Jul 29 18:26:52 2004 @@ -16,7 +16,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: gettext.c,v 1.44 2004/01/08 08:15:44 andi Exp $ */ +/* $Id: gettext.c,v 1.44.2.1 2004/07/29 22:26:52 edink Exp $ */ #ifdef HAVE_CONFIG_H #include "config.h" @@ -27,7 +27,6 @@ #if HAVE_LIBINTL #include <stdio.h> -#include <libintl.h> #include "ext/standard/info.h" #include "php_gettext.h" @@ -56,6 +55,8 @@ {NULL, NULL, NULL} }; /* }}} */ + +#include <libintl.h> zend_module_entry php_gettext_module_entry = { STANDARD_MODULE_HEADER,
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php