summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2003-08-30 21:16:23 +0000
committerDries Buytaert <dries@buytaert.net>2003-08-30 21:16:23 +0000
commite330d7c654346d66186fa8bf5b0103af419483fb (patch)
tree3a9aac4b27ed8786e95e40e481efbaca57860802
parent6f4e902e3bf5b7536eb600d916374ba708805b60 (diff)
downloadbrdo-e330d7c654346d66186fa8bf5b0103af419483fb.tar.gz
brdo-e330d7c654346d66186fa8bf5b0103af419483fb.tar.bz2
- Fixed bug #2690. Patch by Bruno.
-rw-r--r--modules/locale.module4
-rw-r--r--modules/locale/locale.module4
2 files changed, 4 insertions, 4 deletions
diff --git a/modules/locale.module b/modules/locale.module
index e3da971db..ce7ea86d1 100644
--- a/modules/locale.module
+++ b/modules/locale.module
@@ -55,9 +55,9 @@ function locale_help($section = "admin/locale/help") {
}
function locale_system($field){
- $output;
+ $output = "";
- if ($field == "description") {locale_help($output = "admin/system/module");};
+ if ($field == "description") { $output = locale_help("admin/system/modules"); }
return $output;
}
diff --git a/modules/locale/locale.module b/modules/locale/locale.module
index e3da971db..ce7ea86d1 100644
--- a/modules/locale/locale.module
+++ b/modules/locale/locale.module
@@ -55,9 +55,9 @@ function locale_help($section = "admin/locale/help") {
}
function locale_system($field){
- $output;
+ $output = "";
- if ($field == "description") {locale_help($output = "admin/system/module");};
+ if ($field == "description") { $output = locale_help("admin/system/modules"); }
return $output;
}