Show
Ignore:
Timestamp:
02/01/2008 06:22:27 PM (10 months ago)
Author:
Shadowhand
Message:

Updates to core:

  • Kohana::shutdown, Kohana::exeception_handler updated to provide slightly more more consistent results, in more situations
  • Kohana::exeception handler now disables error reporting after the first error, to prevent errors being reporting during shutdown and causing server/browser errors (Thanks PugFish?)
  • Log::write no longer checks if the output directory is writable. Instead, Kohana::setup makes the check, resulting in detectable "log directory unwritable" errors
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/system/libraries/drivers/Database/Mysql.php

    r1895 r1898  
    5959 
    6060                // Build the connection info 
    61                 $host = (isset($host)) ? $host : $socket; 
    62                 $port = (isset($port)) ? ':'.$port : ''; 
     61                $host = isset($host) ? $host : $socket; 
     62                $port = isset($port) ? ':'.$port : ''; 
    6363 
    6464                // Make the connection and select the database