_coder_review_i18n_in_install_t()sites/all/modules/coder/coder_review/includes/coder_review_i18n.inc, line 119
<?php
function _coder_review_i18n_in_install_t() {
return array(
'#warning' => t('Use !st() instead of !t() in !hook_install(), !hook_uninstall() and !hook_update_N()',
array(
'!st' => theme('drupalapi', 'st'),
'!t' => theme('drupalapi', 't'),
'!hook_install' => theme('drupalapi', 'hook_install'),
'!hook_uninstall' => theme('drupalapi', 'hook_uninstall'),
'!hook_update_N' => theme('drupalapi', 'hook_update_N'),
)
),
);
}
?>