X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=blobdiff_plain;f=functions%2Fgettext.php;h=bc4e7f1219040b70305fa4dcd9a8c209b9d76cfe;hp=5a8f180a4285065c9c32a9be5e764ab50cec7bcb;hb=c97a848ee061da1c7b8938f20a220e00dbc585ae;hpb=47ccfad452e8d345542d09e59112cac317cffed8 diff --git a/functions/gettext.php b/functions/gettext.php index 5a8f180a..bc4e7f12 100644 --- a/functions/gettext.php +++ b/functions/gettext.php @@ -8,7 +8,7 @@ * * @link http://www.php.net/gettext Original php gettext manual * @link http://savannah.nongnu.org/projects/php-gettext php-gettext classes - * @copyright © 1999-2006 The SquirrelMail Project Team + * @copyright 1999-2014 The SquirrelMail Project Team * @license http://opensource.org/licenses/gpl-license.php GNU Public License * @version $Id$ * @since 1.1.2 @@ -16,8 +16,6 @@ * @subpackage i18n */ -/** Almost everything requires global.php... */ -require_once(SM_PATH . 'functions/global.php'); /** Load classes and other functions */ include_once(SM_PATH . 'class/l10n.class.php'); @@ -36,7 +34,7 @@ function _($str) { global $l10n, $gettext_domain; if (! isset($l10n[$gettext_domain]) || ! is_object($l10n[$gettext_domain]) || - $l10n[$gettext_domain]->error==1) + $l10n[$gettext_domain]->error==1) return $str; return $l10n[$gettext_domain]->translate($str); } @@ -98,9 +96,8 @@ if (! function_exists('dgettext')) { global $l10n; if (! isset($l10n[$domain]) || ! is_object($l10n[$domain]) || - $l10n[$domain]->error==1) + $l10n[$domain]->error==1) return $str; return $l10n[$domain]->translate($str); } } -?> \ No newline at end of file