_coder_review_6x_theme_get_function_warning

Versions
mediamosa-21
_coder_review_6x_theme_get_function_warning()

Code

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

<?php
function _coder_review_6x_theme_get_function_warning() {
  return t('!theme_get_function() has been deprecated because of template theming; see !theme_get_registry()',
    array(
      '!theme_get_function' => theme('drupalapi', 'theme_get_function', '5'),
      '!theme_get_registry' => theme('drupalapi', 'theme_get_registry', '6'),
    )
  );
}
?>