projects
/
horde.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
73744b1
)
these functions don't belong here
author
Chuck Hagenbuch
<chuck@horde.org>
Wed, 1 Jul 2009 03:22:11 +0000
(23:22 -0400)
committer
Chuck Hagenbuch
<chuck@horde.org>
Wed, 1 Jul 2009 03:22:19 +0000
(23:22 -0400)
framework/Util/lib/Horde/Util.php
patch
|
blob
|
history
diff --git
a/framework/Util/lib/Horde/Util.php
b/framework/Util/lib/Horde/Util.php
index
c0ac678
..
2e8e9c8
100644
(file)
--- 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() { }
-}