X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=functions%2Fgettext.php;h=af1e118712324b756c85652831a932afa54212f6;hb=494d3adbf671a07d3355a939c8cfb3e3db66b04e;hp=c4b8cd15fe27bc29bfc92a073bf7f453eb6ab97c;hpb=4b4abf93a9624311afef0c385023724ee46a2b60;p=squirrelmail.git diff --git a/functions/gettext.php b/functions/gettext.php index c4b8cd15..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-2005 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