--- ./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 = '

'. t("This module adds an easier way for administrators to filter the content on a Drupal site for administration purposes.") .'

'; - $output .= '

'. 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.") .'

'; - break; + if ($path == 'admin/help#cmf') { + return '

'. t("This module adds an easier way for administrators to filter the content on a Drupal site for administration purposes.") .'

' + .'

'. 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.") .'

'; } - return $output; -} +} /** * Implementation of hook_perm(). */