diff --git a/modules/print/print.module b/modules/print/print.module index 0f7cf87..0474c77 100644 --- a/modules/print/print.module +++ b/modules/print/print.module @@ -411,12 +411,6 @@ function print_link_alter(&$links, $node) { * Implementation of hook_help(). */ function print_help($path, $arg) { - switch ($path) { - case 'admin/help#print': - // Return a line-break version of the module README - return filter_filter('process', 1, NULL, file_get_contents(drupal_get_path('module', 'print') .'/README.txt') ); - } - $print_html_link_pos = variable_get('print_html_link_pos', unserialize(PRINT_HTML_LINK_POS_DEFAULT)); if (($path !== 'node/%') && !(empty($print_html_link_pos['help']))) { static $output = FALSE; diff --git a/modules/storm/stormquicktt/stormquicktt.module b/modules/storm/stormquicktt/stormquicktt.module index 26abd7f..d82093f 100644 --- a/modules/storm/stormquicktt/stormquicktt.module +++ b/modules/storm/stormquicktt/stormquicktt.module @@ -15,8 +15,6 @@ function stormquicktt_help($path, $arg) { switch ($path) { case 'admin/suitedesk/quicktt': return '
'. t('Here you can set up parameters for SuiteDesk-Quick-TimeTracker.') .'
'; - case 'admin/help#stormquicktt': - return filter_filter('process', 2, NULL, file_get_contents(dirname(__FILE__) ."/README.txt")); } } diff --git a/modules/watcher/watcher.module b/modules/watcher/watcher.module index e895e4b..e2d0783 100644 --- a/modules/watcher/watcher.module +++ b/modules/watcher/watcher.module @@ -245,24 +245,6 @@ function watcher_perm() { return array('administer watcher', 'use watcher', 'change own user settings', 'access help page', 'access others lists of watched posts'); } -/** - * Implementation of hook_help() - */ -function watcher_help($path, $arg) { - switch ($path) { - case 'admin/help#watcher': - // Load the help text. - $help = file_get_contents('README.txt', FILE_USE_INCLUDE_PATH); - - // Abort if we can't find the file. - if (!$help) return; - - $help = htmlentities($help); - - return theme('watcher_help', $help); - } -} - /** * Implementation of hook_menu(). */