diff options
Diffstat (limited to 'modules')
-rwxr-xr-x | modules/id3/vainfo.class.php | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/modules/id3/vainfo.class.php b/modules/id3/vainfo.class.php index 5cd6239c..94366c20 100755 --- a/modules/id3/vainfo.class.php +++ b/modules/id3/vainfo.class.php @@ -184,11 +184,12 @@ class vainfo { case 'id3v2': $results[$key] = $this->_parse_id3v2($tag_array); break; - case 'ape': - $results[$key] = $this->_parse_ape($tag_array); +// case 'ape': +// $results[$key] = $this->_parse_ape($tag_array); break; default: - debug_event('vainfo','Error: Unable to determine tag type of ' . $key . ' for file ' . $this->filename,'5'); + debug_event('vainfo','Error: Unable to determine tag type of ' . $key . ' for file ' . $this->filename . ' Assuming id3v2','5'); + $results[$key] = $this->_parse_id3v2($tag_array); break; } // end switch |