_coder_review_7x_hook_filter_tips_warning

Versions
mediamosa-21
_coder_review_7x_hook_filter_tips_warning()

Code

sites/all/modules/coder/coder_review/includes/coder_review_7x.inc, line 1182

<?php
function _coder_review_7x_hook_filter_tips_warning() {
  return array(
    '#warning' => t('!hook_filter_tips() has been removed in favour of !hook_filter_info().',
      array(
        '!hook_filter_info()' => theme('drupalapi', 'hook_filter_info', 7),
        '!hook_filter_tips()' => theme('drupalapi', 'hook_filter_tips', 6),
      )
    ),
    '#link' => 'http://drupal.org/node/224333#hook_filter_info',
  );
}
?>