_coder_review_6x_hook_help_warning()sites/all/modules/coder/coder_review/includes/coder_review_6x.inc, line 836
<?php
function _coder_review_6x_hook_help_warning() {
return array(
'#warning' => t('The arguments to !hook_help() have changed',
array(
'!hook_help' => theme('drupalapi', 'hook_help', '6'),
)
),
'#link' => 'http://drupal.org/node/114774#hook-help',
'#description' => t('Change the first two lines to <code>function yourmodule_help($path, $arg) {' . "\n" . ' switch ($path) { ...</code>.'),
);
}
?>