Make WordPress Core


Ignore:
Timestamp:
09/11/2014 07:06:33 PM (10 years ago)
Author:
wonderboymusic
Message:

Update getID3 library to 1.9.8.

Changes:
https://github.com/JamesHeinrich/getID3/compare/1.9.7...v1.9.8

Fixes #29627.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/ID3/module.tag.id3v1.php

    r23766 r29734  
    44//  available at http://getid3.sourceforge.net                 //
    55//            or http://www.getid3.org                         //
     6//          also https://github.com/JamesHeinrich/getID3       //
    67/////////////////////////////////////////////////////////////////
    78// See readme.txt for more details                             //
     
    2627        }
    2728
    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);
    3132
    3233        if (substr($id3v1tag, 0, 3) == 'TAG') {
Note: See TracChangeset for help on using the changeset viewer.