_coder_review_6x_watchdog_warning

Versions
mediamosa-21
_coder_review_6x_watchdog_warning()

Code

sites/all/modules/coder/coder_review/includes/coder_review_6x.inc, line 686

<?php
function _coder_review_6x_watchdog_warning() {
  return array(
    '#warning' => t('Parameters of !watchdog() changed, you <em>must</em> remove calls to !t()',
      array(
        '!watchdog' => theme('drupalapi', 'watchdog', '6'),
        '!t' => theme('drupalapi', 't', '6'),
      )
    ),
    '#link' => 'http://drupal.org/node/114774#watchdog_parameters',
  );
}
?>