diff options
Diffstat (limited to 'modules/id3/getid3/write.php')
-rw-r--r-- | modules/id3/getid3/write.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/id3/getid3/write.php b/modules/id3/getid3/write.php index e9dbf160..73e26103 100644 --- a/modules/id3/getid3/write.php +++ b/modules/id3/getid3/write.php @@ -102,6 +102,7 @@ class getid3_writetags case 'mp3': case 'mp2': case 'mp1': + case 'riff': // maybe not officially, but people do it anyway $AllowedTagFormats = array('id3v1', 'id3v2.2', 'id3v2.3', 'id3v2.4', 'ape', 'lyrics3'); break; @@ -300,7 +301,7 @@ class getid3_writetags $this->errors[] = 'WriteVorbisComment() failed with message(s):<PRE><UL><LI>'.trim(implode('</LI><LI>', $vorbiscomment_writer->errors)).'</LI></UL></PRE>'; } } else { - $this->errors[] = 'WriteVorbisComment() failed'; + $this->errors[] = 'FormatDataForVorbisComment() failed'; } break; |