- Fixed bug #2690. Patch by Bruno.

4.3.x
Dries Buytaert 2003-08-30 21:16:23 +00:00
parent 6f4e902e3b
commit e330d7c654
2 changed files with 4 additions and 4 deletions

View File

@ -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;
}

View File

@ -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;
}