summaryrefslogtreecommitdiff
path: root/ext/gettext/gettext.c
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>1999-12-17 21:50:07 +0000
committerZeev Suraski <zeev@php.net>1999-12-17 21:50:07 +0000
commitbb3ca126299a9ff8216782db49c9a15c261ff5ae (patch)
tree0c782cd1db7002cb205c3253efd2ae62f15f3b61 /ext/gettext/gettext.c
parent502bb9c746e3d07cf8c5faa18b38497a0a6773bc (diff)
downloadphp-git-bb3ca126299a9ff8216782db49c9a15c261ff5ae.tar.gz
More cleanup...
Diffstat (limited to 'ext/gettext/gettext.c')
-rw-r--r--ext/gettext/gettext.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/gettext/gettext.c b/ext/gettext/gettext.c
index 794565255b..bcdc91441a 100644
--- a/ext/gettext/gettext.c
+++ b/ext/gettext/gettext.c
@@ -26,7 +26,7 @@
#include <libintl.h>
-function_entry php3_gettext_functions[] = {
+function_entry php_gettext_functions[] = {
PHP_FE(textdomain, NULL)
PHP_FE(gettext, NULL)
PHP_FALIAS(_, gettext, NULL)
@@ -36,8 +36,8 @@ function_entry php3_gettext_functions[] = {
{NULL, NULL, NULL}
};
-zend_module_entry php3_gettext_module_entry = {
- "gettext", php3_gettext_functions, NULL, NULL, NULL, NULL, PHP_MINFO(gettext), STANDARD_MODULE_PROPERTIES
+zend_module_entry php_gettext_module_entry = {
+ "gettext", php_gettext_functions, NULL, NULL, NULL, NULL, PHP_MINFO(gettext), STANDARD_MODULE_PROPERTIES
};
PHP_MINFO_FUNCTION(gettext)