_coder_review_i18n_form_error_without_t

Versions
mediamosa-21
_coder_review_i18n_form_error_without_t()

Code

sites/all/modules/coder/coder_review/includes/coder_review_i18n.inc, line 144

<?php
function _coder_review_i18n_form_error_without_t() {
  return array(
    '#warning' => t('The $message argument to !form_error() should be enclosed within !t() so that it is translatable.',
      array(
        '!form_error' => theme('drupalapi', 'form_error'),
        '!t' => theme('drupalapi', 't'),
      )
    ),
  );
}
?>