Changeset 3163 for trunk/modules/auth
- Timestamp:
- 07/20/2008 11:15:31 AM (5 months ago)
- Files:
-
- 1 modified
-
trunk/modules/auth/libraries/Auth.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/modules/auth/libraries/Auth.php
r3114 r3163 50 50 { 51 51 // Append default auth configuration 52 $config += Config::item('auth');52 $config += Kohana::config('auth'); 53 53 54 54 // 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')); 56 56 57 57 // Save the config in the object … … 73 73 $this->driver = $driver; 74 74 75 Log::add('debug', 'Auth Library loaded');75 Kohana::log('debug', 'Auth Library loaded'); 76 76 } 77 77
