_coder_review_6x_taxonomy_node_get_terms_warning()sites/all/modules/coder/coder_review/includes/coder_review_6x.inc, line 660
<?php
function _coder_review_6x_taxonomy_node_get_terms_warning() {
return array(
'#warning' => t('!taxonomy_node_get_terms(), !taxonomy_node_get_terms_by_vocabulary(), !taxonomy_node_save and !taxonomy_node_delete() now take a full $node object, not just a nid (node id).',
array(
'!taxonomy_node_get_terms' => theme('drupalapi', 'taxonomy_node_get_terms', '6'),
'!taxonomy_node_get_terms_by_vocabulary' => theme('drupalapi', 'taxonomy_node_get_terms_by_vocabulary', '6'),
'!taxonomy_node_save' => theme('drupalapi', 'taxonomy_node_save', '6'),
'!taxonomy_node_delete' => theme('drupalapi', 'taxonomy_node_delete', '6'),
)
),
'#link' => 'http://drupal.org/node/114774#taxonomy-revisions',
);
}
?>