From 76ea0a9476cbdaa58e938b8a00cca579fb5f148c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A1bor=20Hojtsy?= Date: Tue, 27 Nov 2007 21:06:28 +0000 Subject: [PATCH] #133092 by wmostrey: hide help page links when help module is not enabled, so the links lead to 404s --- modules/system/system.admin.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/system/system.admin.inc b/modules/system/system.admin.inc index 5c93afa494f..bc354c77a88 100644 --- a/modules/system/system.admin.inc +++ b/modules/system/system.admin.inc @@ -91,7 +91,7 @@ function system_admin_by_module() { $modules = module_rebuild_cache(); $menu_items = array(); - $help_arg = drupal_help_arg(); + $help_arg = module_exists('help') ? drupal_help_arg() : FALSE; foreach ($modules as $file) { $module = $file->name; @@ -105,7 +105,7 @@ function system_admin_by_module() { if (count($admin_tasks)) { // Check for help links. - if (module_invoke($module, 'help', "admin/help#$module", $help_arg)) { + if ($help_arg && module_invoke($module, 'help', "admin/help#$module", $help_arg)) { $admin_tasks[100] = l(t('Get help'), "admin/help/$module"); }