Changeset 24696 for trunk/wp-includes/ID3/getid3.php
- Timestamp:
- 07/13/2013 12:37:36 AM (12 years ago)
- File:
-
- 1 moved
-
trunk/wp-includes/ID3/getid3.php (moved) (moved from trunk/wp-includes/ID3/class-getid3.php) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/ID3/getid3.php
r24649 r24696 104 104 protected $memory_limit = 0; 105 105 106 const VERSION = '1.9. 5-20130220';106 const VERSION = '1.9.7-20130705'; 107 107 const FREAD_BUFFER_SIZE = 32768; 108 108 … … 222 222 } 223 223 224 224 225 // public: setOption 225 226 public function setOption($optArray) { … … 235 236 return true; 236 237 } 238 237 239 238 240 public function openfile($filename) { … … 294 296 } 295 297 $this->info['filesize'] = $real_filesize; 296 $this-> error('File is larger than '.round(PHP_INT_MAX / 1073741824).'GB (filesystem reports it as '.number_format($real_filesize, 3).'GB) and is not properly supported by PHP.');298 $this->warning('File is larger than '.round(PHP_INT_MAX / 1073741824).'GB (filesystem reports it as '.number_format($real_filesize, 3).'GB) and is not properly supported by PHP.'); 297 299 } 298 300 } … … 1765 1767 return $attachment; 1766 1768 } 1769 1767 1770 } 1768 1771 1769 class getid3_exception extends Exception { 1772 1773 class getid3_exception extends Exception 1774 { 1770 1775 public $message; 1771 1776 }
Note: See TracChangeset
for help on using the changeset viewer.