X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=functions%2Fgettext.php;h=af1e118712324b756c85652831a932afa54212f6;hb=209e24bb063cb116e8564e226e0a2687276cb9d5;hp=5a8f180a4285065c9c32a9be5e764ab50cec7bcb;hpb=47ccfad452e8d345542d09e59112cac317cffed8;p=squirrelmail.git diff --git a/functions/gettext.php b/functions/gettext.php index 5a8f180a..af1e1187 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-2007 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