From 476b03195e920e26556f2b3c902bf6b17032fcdd Mon Sep 17 00:00:00 2001 From: Steven Wittens Date: Thu, 10 May 2007 07:00:21 +0000 Subject: [PATCH] Code style: use get_t() to determine appropriate t() function --- includes/unicode.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/unicode.inc b/includes/unicode.inc index 93ec8177213..0d5c2bc4107 100644 --- a/includes/unicode.inc +++ b/includes/unicode.inc @@ -78,7 +78,7 @@ function _unicode_check() { */ function unicode_requirements() { // Ensure translations don't break at install time - $t = function_exists('install_main') ? 'st' : 't'; + $t = get_t(); $libraries = array( UNICODE_SINGLEBYTE => $t('Standard PHP'),