Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
fCore.php
r514 r526 Hide Line Numbers 10 10 * @link http://flourishlib.com/fCore 11 11 * 12 * @version 1.0.0b4 12 * @version 1.0.0b5 13 * @changes 1.0.0b5 Fixed a bug with checking the error/exception destination when a log file is specified [wb, 2009-03-07] 13 14 * @changes 1.0.0b4 Backwards compatibility break - ::getOS() and ::getPHPVersion() removed, replaced with ::checkOS() and ::checkVersion() [wb, 2009-02-16] 14 15 * @changes 1.0.0b3 ::handleError() now displays what kind of error occured as the heading [wb, 2009-02-15] … … 268 269 $path_info = pathinfo($destination); 269 270 $dir_exists = file_exists($path_info['dirname']); 270 $dir_writable = ($dir_exists) ? is_writable($path_info['dirnam ']) : FALSE;271 $dir_writable = ($dir_exists) ? is_writable($path_info['dirname']) : FALSE; 271 272 $file_exists = file_exists($destination); 272 273 $file_writable = ($file_exists) ? is_writable($destination) : FALSE;
