summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/ui.lib.php23
1 files changed, 0 insertions, 23 deletions
diff --git a/lib/ui.lib.php b/lib/ui.lib.php
index 42003d9f..756db2fb 100644
--- a/lib/ui.lib.php
+++ b/lib/ui.lib.php
@@ -77,29 +77,6 @@ function flip_class($array=0) {
} // flip_class
/**
- * _
- * Check to see if the gettext alias _ is defined. If it isn't we define it as
- * a noop.
- */
-if (!function_exists('_')) {
-
- function _($string) {
- return $string;
- } // _
-
-} // if _ isn't defined
-
-/**
- * ngettext
- * checks for ngettext and defines it if it doesn't exist
- */
-if (!function_exists('ngettext')) {
- function ngettext($string) {
- return $string;
- }
-} // if no ngettext
-
-/**
* access_denied
* Throws an error if they try to do something that they aren't allowed to.
*/