--- security_review.module.orig	2013-04-26 11:01:25.046981133 -0400
+++ security_review.module	2013-04-26 11:03:04.101203210 -0400
@@ -126,26 +126,23 @@ function security_review_check_help($mod
   module_load_include('inc', 'security_review', 'security_review.help');
   $output = '';
   if (!is_null($module) && !is_null($check_name)) {
-    $function = $module . '_security_checks'; // Call the hook implementation.
-    if (function_exists($function)) {
-      $checklist = $function();
-      $check = $checklist[$module][$check_name];
-      if (isset($check['help'])) {
-        $output = $check['help'];
-      }
-      elseif (isset($check['callback'])) {
-        if (isset($check['file'])) {
-          // Handle Security Review defining checks for other modules.
-          if (isset($check['module'])) {
-            $module = $check['module'];
-          }
-          module_load_include('inc', $module, $check['file']);
-        }
-        $function = $check['callback'] . '_help';
-        if (function_exists($function)) {
-          $element = $function();
-          $output = theme('security_review_check_help', $element);
+    $checklist = security_review_security_checks();
+    $check = $checklist[$module][$check_name];
+    if (isset($check['help'])) {
+      $output = $check['help'];
+    }
+    elseif (isset($check['callback'])) {
+      if (isset($check['file'])) {
+        // Handle Security Review defining checks for other modules.
+        if (isset($check['module'])) {
+          $module = $check['module'];
         }
+        module_load_include('inc', $module, $check['file']);
+      }
+      $function = $check['callback'] . '_help';
+      if (function_exists($function)) {
+        $element = $function();
+        $output = theme('security_review_check_help', $element);
       }
     }
   }

