Changeset 6429
- Timestamp:
- 12/10/07 17:01:50 (1 year ago)
- Files:
-
- trunk/lib/log/sfFileLogger.class.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lib/log/sfFileLogger.class.php
r6397 r6429 50 50 } 51 51 52 if (!is_writable($dir) || ($fileExists = file_exists($options['file']) && !is_writable($options['file']))) 52 $fileExists = file_exists($options['file']); 53 if (!is_writable($dir) || ($fileExists && !is_writable($options['file']))) 53 54 { 54 55 throw new sfFileException(sprintf('Unable to open the log file "%s" for writing.', $options['file']));