diff options
Diffstat (limited to 'audio/ampache/patches/patch-aa')
-rw-r--r-- | audio/ampache/patches/patch-aa | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/audio/ampache/patches/patch-aa b/audio/ampache/patches/patch-aa deleted file mode 100644 index b51ca9fc0a7..00000000000 --- a/audio/ampache/patches/patch-aa +++ /dev/null @@ -1,21 +0,0 @@ -$NetBSD: patch-aa,v 1.1.1.1 2008/09/14 09:06:54 abs Exp $ - ---- lib/class/vainfo.class.php.orig 2008-08-31 07:20:41.000000000 +0100 -+++ lib/class/vainfo.class.php -@@ -498,11 +498,14 @@ class vainfo { - if ($this->_iconv) { - /* Guess that it's UTF-8 */ - if (!$encoding) { $encoding = $this->_getID3->encoding; } -+ /* Try GNU iconv //TRANSLIT extension first */ - $charset = $this->encoding . '//TRANSLIT'; -- $tag = iconv($encoding,$charset,$tag); -+ $newtag = iconv($encoding,$charset,$tag); -+ if (strcmp($newtag, "") == 0) -+ $newtag = iconv($encoding,$this->encoding,$tag); - } - -- return $tag; -+ return $newtag; - - - |