summaryrefslogtreecommitdiff
path: root/modules/locale.module
diff options
context:
space:
mode:
Diffstat (limited to 'modules/locale.module')
-rw-r--r--modules/locale.module6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/locale.module b/modules/locale.module
index da09f8fd6..5fd20b48e 100644
--- a/modules/locale.module
+++ b/modules/locale.module
@@ -65,7 +65,7 @@ function locale_languages($translation) {
return $output;
}
-function locale_display() {
+function locale_overview() {
$result = db_query("SELECT * FROM locales ORDER BY string");
$output .= "<TABLE BORDER=\"1\" CELLPADDING=\"2\" CELLSPACING=\"2\">\n";
$output .= " <TR><TH>string</TH><TH>languages</TH><TH COLSPAN=\"2\">operations</TH><TR>\n";
@@ -85,7 +85,7 @@ function locale_admin() {
switch ($op) {
case "delete":
locale_delete(check_input($id));
- locale_display();
+ locale_overview();
break;
case "help":
locale_help();
@@ -97,7 +97,7 @@ function locale_admin() {
locale_save(check_input($id), $edit);
// fall through
default:
- locale_display();
+ locale_overview();
}
}