Changeset 29734 for trunk/src/wp-includes/ID3/module.tag.id3v1.php
- Timestamp:
- 09/11/2014 07:06:33 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/ID3/module.tag.id3v1.php
r23766 r29734 4 4 // available at http://getid3.sourceforge.net // 5 5 // or http://www.getid3.org // 6 // also https://github.com/JamesHeinrich/getID3 // 6 7 ///////////////////////////////////////////////////////////////// 7 8 // See readme.txt for more details // … … 26 27 } 27 28 28 fseek($this->getid3->fp,-256, SEEK_END);29 $preid3v1 = fread($this->getid3->fp,128);30 $id3v1tag = fread($this->getid3->fp,128);29 $this->fseek(-256, SEEK_END); 30 $preid3v1 = $this->fread(128); 31 $id3v1tag = $this->fread(128); 31 32 32 33 if (substr($id3v1tag, 0, 3) == 'TAG') {
Note: See TracChangeset
for help on using the changeset viewer.