_coder_review_7x_taxonomy_del_term_warning

Versions
mediamosa-21
_coder_review_7x_taxonomy_del_term_warning()

Code

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

<?php
function _coder_review_7x_taxonomy_del_term_warning() {
  return array(
    '#warning' => t('!taxonomy_del_term() function has been renamed to !taxonomy_term_delete()',
      array(
        '!taxonomy_del_term()' => theme('drupalapi', 'taxonomy_del_term', 6),
        '!taxonomy_term_delete()' => theme('drupalapi', 'taxonomy_term_delete', 7),
      )
    ),
    '#link' => 'http://drupal.org/node/224333#taxonomy_crud',
  );
}
?>