_coder_review_7x_taxonomy_save_term_warning()sites/all/modules/coder/coder_review/includes/coder_review_7x.inc, line 1251
<?php
function _coder_review_7x_taxonomy_save_term_warning() {
return array(
'#warning' => t('!taxonomy_save_term() function has been renamed to !taxonomy_term_save() and takes a term object as a parameter instead of any array.',
array(
'!taxonomy_save_term()' => theme('drupalapi', 'taxonomy_save_term', 6),
'!taxonomy_term_save()' => theme('drupalapi', 'taxonomy_term_save', 7),
)
),
'#link' => 'http://drupal.org/node/224333#taxonomy_crud',
);
}
?>