Changeset 3163 for trunk/modules/auth

Show
Ignore:
Timestamp:
07/20/2008 11:15:31 AM (5 months ago)
Author:
Shadowhand
Message:

Follow up to r3160, updated modules

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/modules/auth/libraries/Auth.php

    r3114 r3163  
    5050        { 
    5151                // Append default auth configuration 
    52                 $config += Config::item('auth'); 
     52                $config += Kohana::config('auth'); 
    5353 
    5454                // Clean up the salt pattern and split it into an array 
    55                 $config['salt_pattern'] = preg_split('/,\s*/', Config::item('auth.salt_pattern')); 
     55                $config['salt_pattern'] = preg_split('/,\s*/', Kohana::config('auth.salt_pattern')); 
    5656 
    5757                // Save the config in the object 
     
    7373                $this->driver = $driver; 
    7474 
    75                 Log::add('debug', 'Auth Library loaded'); 
     75                Kohana::log('debug', 'Auth Library loaded'); 
    7676        } 
    7777