diff options
author | Dries Buytaert <dries@buytaert.net> | 2001-05-25 16:03:02 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2001-05-25 16:03:02 +0000 |
commit | 0b32787a9c04f66d618a1cb7f126d4d1404832cc (patch) | |
tree | 1463a61523fc0a5b9321b8f9a0b1b3c0e1ef604f /modules/locale | |
parent | bfc897d533d9c9d2642c300bc771ca10e7ee8648 (diff) | |
download | brdo-0b32787a9c04f66d618a1cb7f126d4d1404832cc.tar.gz brdo-0b32787a9c04f66d618a1cb7f126d4d1404832cc.tar.bz2 |
- Added a experimental index.module to try out some of the discussed
techniques. It does not work yet, nor is it integrated with the
rest of the code.
Diffstat (limited to 'modules/locale')
-rw-r--r-- | modules/locale/locale.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/locale/locale.module b/modules/locale/locale.module index 40718a8f0..b8dd70fa6 100644 --- a/modules/locale/locale.module +++ b/modules/locale/locale.module @@ -25,7 +25,7 @@ function locale_help() { } function locale_conf_options() { - return form_select(t("Locale support"), "locale", variable_get("locale", 1), array("Disabled", "Enabled"), t("Disable locale support if your site does not require translation or internationalization support.")); + return form_select(t("Locale support"), "locale", variable_get("locale", 0), array("Disabled", "Enabled"), t("Disable locale support if your site does not require translation or internationalization support.")); } function locale_delete($id) { |