summaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rwxr-xr-xmodules/id3/vainfo.class.php4
-rw-r--r--modules/kajax/README24
2 files changed, 26 insertions, 2 deletions
diff --git a/modules/id3/vainfo.class.php b/modules/id3/vainfo.class.php
index 92cdeb0c..d9efe341 100755
--- a/modules/id3/vainfo.class.php
+++ b/modules/id3/vainfo.class.php
@@ -381,8 +381,8 @@ class vainfo {
function _clean_tag($tag,$encoding='') {
- if ($this->_iconv AND $this->encoding != $encoding) {
- $tag = iconv('UTF-8','ISO-8859-1',$tag);
+ if ($this->_iconv) {
+ $tag = iconv('UTF-8',conf('site_charset'),$tag);
}
return $tag;
diff --git a/modules/kajax/README b/modules/kajax/README
new file mode 100644
index 00000000..b945c5dd
--- /dev/null
+++ b/modules/kajax/README
@@ -0,0 +1,24 @@
+/*
+
+ Copyright (c) 2001 - 2006 Ampache.org
+ All rights reserved.
+
+ This program is free software; you can redistribute it and/or
+ modify it under the terms of the GNU General Public License
+ as published by the Free Software Foundation; either version 2
+ of the License, or (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+*/
+/**
+ * Library Created by Kevin Riker
+ * Modified by Karl Vollmer
+ */