Changeset 47602
- Timestamp:
- 04/20/2020 11:32:37 AM (5 years ago)
- Location:
- trunk/src/wp-includes/ID3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/ID3/getid3.php
r47601 r47602 251 251 protected $startup_warning = ''; 252 252 253 const VERSION = '1.9.19-201912 131005';253 const VERSION = '1.9.19-201912211559'; 254 254 const FREAD_BUFFER_SIZE = 32768; 255 255 -
trunk/src/wp-includes/ID3/module.audio.mp3.php
r47601 r47602 1789 1789 */ 1790 1790 public static function MPEGaudioHeaderValid($rawarray, $echoerrors=false, $allowBitrate15=false) { 1791 if ( ($rawarray['synch'] & 0x0FFE) != 0x0FFE) {1791 if (!isset($rawarray['synch']) || ($rawarray['synch'] & 0x0FFE) != 0x0FFE) { 1792 1792 return false; 1793 1793 }
Note: See TracChangeset
for help on using the changeset viewer.