diff -r 346c88efed21 -r 5e2f62d02dcd wp/wp-includes/ID3/module.tag.id3v1.php --- a/wp/wp-includes/ID3/module.tag.id3v1.php Mon Jun 08 16:11:51 2015 +0000 +++ b/wp/wp-includes/ID3/module.tag.id3v1.php Tue Jun 09 03:35:32 2015 +0200 @@ -3,6 +3,7 @@ /// getID3() by James Heinrich // // available at http://getid3.sourceforge.net // // or http://www.getid3.org // +// also https://github.com/JamesHeinrich/getID3 // ///////////////////////////////////////////////////////////////// // See readme.txt for more details // ///////////////////////////////////////////////////////////////// @@ -25,9 +26,9 @@ return false; } - fseek($this->getid3->fp, -256, SEEK_END); - $preid3v1 = fread($this->getid3->fp, 128); - $id3v1tag = fread($this->getid3->fp, 128); + $this->fseek(-256, SEEK_END); + $preid3v1 = $this->fread(128); + $id3v1tag = $this->fread(128); if (substr($id3v1tag, 0, 3) == 'TAG') { @@ -356,4 +357,4 @@ return $ID3v1Tag; } -} +} \ No newline at end of file