--- ./cmf.module.orig	2009-08-11 17:33:35.000000000 +0200
+++ ./cmf.module	2009-08-12 11:57:54.000000000 +0200
@@ -28,14 +28,11 @@
  * Implementation of hook_help().
  */
 function cmf_help($path, $arg) {
-  switch ($section) {
-    case "admin/help#cmf":
-      $output = '<p>'. t("This module adds an easier way for administrators to filter the content on a Drupal site for administration purposes.") .'</p>';
-      $output .= '<p>'. t("It's an improvement over the content page in the administration area of Drupal. It can show on the same page nodes and comments and adds new filters like role and author.") .'</p>';
-      break;
+  if ($path == 'admin/help#cmf') {
+    return '<p>'. t("This module adds an easier way for administrators to filter the content on a Drupal site for administration purposes.") .'</p>'
+          .'<p>'. t("It's an improvement over the content page in the administration area of Drupal. It can show on the same page nodes and comments and adds new filters like role and author.") .'</p>';
   }
-  return $output;
-} 
+}
 /**
  * Implementation of hook_perm().
  */
