summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2010-01-12 06:09:04 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2010-01-12 06:09:04 +0000
commite1812b3353b6fe735e9a0dacf7e48b6eeb71d4cd (patch)
tree1ec7208428041a65d8b63be0ae4ad32338a95444 /includes
parent26417f9d0793c14c765481dfc10c7826562a39f1 (diff)
downloadbrdo-e1812b3353b6fe735e9a0dacf7e48b6eeb71d4cd.tar.gz
brdo-e1812b3353b6fe735e9a0dacf7e48b6eeb71d4cd.tar.bz2
#678628 follow-up by jhodgdon: Remove buggy and incorrect 'More Help' functionality from Help module.
Diffstat (limited to 'includes')
-rw-r--r--includes/menu.inc6
1 files changed, 0 insertions, 6 deletions
diff --git a/includes/menu.inc b/includes/menu.inc
index 5e4ee1001..cc7fe485c 100644
--- a/includes/menu.inc
+++ b/includes/menu.inc
@@ -1495,12 +1495,6 @@ function menu_get_active_help() {
// Lookup help for this path.
if ($help = $function($router_path, $arg)) {
$output .= $help . "\n";
-
- // Add "more help" link on admin pages if the module provides a
- // standalone help page.
- if ($arg[0] == "admin" && user_access('access administration pages') && module_exists('help') && $function('admin/help#' . $module, $empty_arg)) {
- $output .= theme("more_help_link", array('url' => url('admin/help/' . $module)));
- }
}
}
return $output;