From: Chuck Hagenbuch Date: Wed, 1 Jul 2009 03:22:11 +0000 (-0400) Subject: these functions don't belong here X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=b0309fd21bf904a0f7f024b4322e71509be38c42;p=horde.git these functions don't belong here --- diff --git a/framework/Util/lib/Horde/Util.php b/framework/Util/lib/Horde/Util.php index c0ac678fa..2e8e9c857 100644 --- a/framework/Util/lib/Horde/Util.php +++ b/framework/Util/lib/Horde/Util.php @@ -981,21 +981,3 @@ class Horde_Util } } - -/* Stand-in functions if gettext is not available. */ -if (!function_exists('_')) -{ - function _($string) - { - return $string; - } - - function ngettext($msgid1, $msgid2, $n) - { - return $n > 1 ? $msgid2 : $msgid1; - } - - function bindtextdomain() { } - - function textdomain() { } -}