Development

Changeset 6432

You must first sign up to be able to contribute.

Changeset 6432

Show
Ignore:
Timestamp:
12/10/07 19:25:51 (2 years ago)
Author:
fabien
Message:

fixed sfFileLogger typo

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/1.0/lib/log/sfLogger/sfFileLogger.class.php

    r6398 r6432  
    4040    } 
    4141 
    42     if (!is_writable($dir) || ($fileExists = file_exists($options['file']) && !is_writable($options['file']))) 
     42    $fileExists = file_exists($options['file']); 
     43    if (!is_writable($dir) || ($fileExists && !is_writable($options['file']))) 
    4344    { 
    4445      throw new sfFileException(sprintf('Unable to open the log file "%s" for writing', $options['file'])); 

The Sensio Labs Network

Since 1998, Sensio Labs has been promoting the Open-Source software movement by providing quality web application development, training, consulting, and supporting several large Open-Source projects.