_coder_review_5x_node_get_name_warning

Versions
mediamosa-21
_coder_review_5x_node_get_name_warning()

Code

sites/all/modules/coder/coder_review/includes/coder_review_5x.inc, line 178

<?php
function _coder_review_5x_node_get_name_warning() {
  return t('Replace !node_get_name($node) with !node_get_types(\'name\', $node)',
    array(
      '!node_get_name' => theme('drupalapi', 'node_get_name', '4.7'),
      '!node_get_types' => theme('drupalapi', 'node_get_types', '5'),
    )
  );
}
?>