diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-03-11 06:14:09 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-03-11 06:14:09 +0000 |
commit | 7c8a11684d9de33fa0b7ed54fd59fd7cf2745911 (patch) | |
tree | 9412875fd882e80918a747c0ae848a0bfa24e03e /lib/class/vainfo.class.php | |
parent | 13bc70042d3077a9da5cb632b3a748f6d49314d8 (diff) | |
download | ampache-7c8a11684d9de33fa0b7ed54fd59fd7cf2745911.tar.gz ampache-7c8a11684d9de33fa0b7ed54fd59fd7cf2745911.tar.bz2 ampache-7c8a11684d9de33fa0b7ed54fd59fd7cf2745911.zip |
fixed issue with encoding on id3v1/2
Diffstat (limited to 'lib/class/vainfo.class.php')
-rw-r--r-- | lib/class/vainfo.class.php | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/lib/class/vainfo.class.php b/lib/class/vainfo.class.php index a68f90fe..2f8c7ba2 100644 --- a/lib/class/vainfo.class.php +++ b/lib/class/vainfo.class.php @@ -63,12 +63,14 @@ class vainfo { // Initialize getID3 engine $this->_getID3 = new getID3(); - $this->_getID3->option_md5_data = false; - $this->_getID3->option_md5_data_source = false; - $this->_getID3->option_tags_html = false; - $this->_getID3->option_extra_info = false; - $this->_getID3->option_tag_lyrics3 = false; - $this->_getID3->encoding = $this->encoding; + $this->_getID3->option_md5_data = false; + $this->_getID3->option_md5_data_source = false; + $this->_getID3->option_tags_html = false; + $this->_getID3->option_extra_info = false; + $this->_getID3->option_tag_lyrics3 = false; + $this->_getID3->encoding = $this->encoding; + $this->_getID3->encoding_id3v1 = $this->encoding; + $this->_getID3->encoding_id3v2 = $this->encoding; /* Check for ICONV */ if (function_exists('iconv')) { |