Assembla home | Assembla project page
 

Changeset 213

Show
Ignore:
Timestamp:
04/05/08 07:25:18 (8 months ago)
Author:
Slynderdale
Message:

Fixed a bug with realpath on Windows in debug logging

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/Phergie/Driver/Abstract.php

    r205 r213  
    125125            echo $message; 
    126126            if ($log = $this->getIni('log') and !empty($log)) { 
    127                 file_put_contents(realpath($log), $message, FILE_APPEND); 
     127                file_put_contents($log, $message, FILE_APPEND); 
    128128            } 
    129129        }