diff options
author | Paul Arthur <flowerysong00@yahoo.com> | 2012-03-31 16:18:57 -0400 |
---|---|---|
committer | Paul Arthur <paul.arthur@flowerysong.com> | 2012-04-12 21:13:28 -0400 |
commit | 2e02f396cd4f2b1824c00eb19ee2ea9e388159a7 (patch) | |
tree | 5edd2157ca8d2d6992871d10d7aaa1cda85316b2 | |
parent | 75fe3b059325e9f94f17a62569c11f4398d24ac4 (diff) | |
download | ampache-2e02f396cd4f2b1824c00eb19ee2ea9e388159a7.tar.gz ampache-2e02f396cd4f2b1824c00eb19ee2ea9e388159a7.tar.bz2 ampache-2e02f396cd4f2b1824c00eb19ee2ea9e388159a7.zip |
Drop unused function __()
-rw-r--r-- | lib/gettext.php | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/lib/gettext.php b/lib/gettext.php index 11002f40..127f94c9 100644 --- a/lib/gettext.php +++ b/lib/gettext.php @@ -58,25 +58,6 @@ function load_gettext() { } // load_gettext /** - * __ - * This function does the same as _ on the supplied - * string, but also does a str_replace on the supplied - * vars - * - * @param string $string - * @param string $subject - * @param string $replace - * @return string - */ -function __($string,$subject,$replace) { - - $translated = _($string); - $result = str_replace($subject,$replace,$translated); - return $result; - -} // __ - -/** * gettext_noop * * @param string $string |