diff options
Diffstat (limited to 'modules/help/help.module')
-rw-r--r-- | modules/help/help.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/help/help.module b/modules/help/help.module index 86cb40245..1333a7e89 100644 --- a/modules/help/help.module +++ b/modules/help/help.module @@ -11,7 +11,7 @@ */ function help_menu() { $items['admin/help'] = array( - 'title' => t('Help'), + 'title' => 'Help', 'page callback' => 'help_main', 'access arguments' => array('access administration pages'), 'weight' => 9, @@ -19,7 +19,7 @@ function help_menu() { foreach (module_implements('help', TRUE) as $module) { $items['admin/help/'. $module] = array( - 'title' => t($module), + 'title' => $module, 'page callback' => 'help_page', 'type' => MENU_CALLBACK, ); |