diff options
Diffstat (limited to 'modules/title.module')
-rw-r--r-- | modules/title.module | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/modules/title.module b/modules/title.module index 311200ff0..5e6c2e6bd 100644 --- a/modules/title.module +++ b/modules/title.module @@ -2,8 +2,22 @@ // $Id$ function title_system($field){ - $system["description"] = t("Enables users to link to stories, articles or similar content by title."); - return $system[$field]; + $output = ""; + + if ($field == "description") {$output = title_help("admin/system/modules"); }; + return $output; +} + +function title_help($section) { + $output = ""; + + switch ($section) { + case 'admin/system/modules': + $output = t("Enables users to link to stories, articles or similar content by title."); + break; + } + + return $output; } function title_page() { |