Changeset 47602 for trunk/src/wp-includes/ID3/module.audio.mp3.php
- Timestamp:
- 04/20/2020 11:32:37 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.