Changeset 32979 for trunk/src/wp-includes/ID3/getid3.php
- Timestamp:
- 06/28/2015 12:16:17 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/ID3/getid3.php
r29734 r32979 29 29 $temp_dir = ''; 30 30 } 31 if (!$temp_dir ) {31 if (!$temp_dir && function_exists('sys_get_temp_dir')) { // sys_get_temp_dir added in PHP v5.2.1 32 32 // sys_get_temp_dir() may give inaccessible temp dir, e.g. with open_basedir on virtual hosts 33 33 $temp_dir = sys_get_temp_dir(); … … 110 110 protected $startup_warning = ''; 111 111 112 const VERSION = '1.9. 8-20140511';112 const VERSION = '1.9.9-20141121'; 113 113 const FREAD_BUFFER_SIZE = 32768; 114 114 … … 250 250 $this->info = array(); 251 251 $this->info['GETID3_VERSION'] = $this->version(); 252 $this->info['php_memory_limit'] = $this->memory_limit;252 $this->info['php_memory_limit'] = (($this->memory_limit > 0) ? $this->memory_limit : false); 253 253 254 254 // remote files not supported
Note: See TracChangeset
for help on using the changeset viewer.