- Patch #665920 by v_20q: remove a comment inside t() function.

merge-requests/26/head
Dries Buytaert 2009-12-23 15:39:57 +00:00
parent c28317a36c
commit 5cdeb4b4ad
1 changed files with 0 additions and 3 deletions

View File

@ -1525,9 +1525,6 @@ function t($string, array $args = array(), array $options = array()) {
$string = $custom_strings[$options['langcode']][$options['context']][$string];
}
// Translate with locale module if enabled.
// We don't use function_exists() here, because it breaks the testing
// framework if the locale module is enabled in the parent site (we cannot
// unload functions in PHP).
elseif (function_exists('locale') && $options['langcode'] != 'en') {
$string = locale($string, $options['context'], $options['langcode']);
}