Show
Ignore:
Timestamp:
09/25/2008 10:47:04 PM (2 months ago)
Author:
Shadowhand
Message:

Updated Auth:

  • Created a "session_key" configuration option to change the name of the session key that auth uses, fixes #844
  • Refactored Auth_Driver into an abstract class
  • Removed auth/driver directory, moving drivers up one level
  • Updated Auth, Auth_ORM, and Auth_File to match changes
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/modules/auth/config/auth.php

    r3326 r3488  
    1010 
    1111/** 
    12  * Driver to use for authentication. By default, LDAP and ORM are available. 
     12 * Driver to use for authentication. By default, File and ORM are available. 
    1313 */ 
    1414$config['driver'] = 'ORM'; 
     
    3636 
    3737/** 
     38 * Set the session key that will be used to store the current user. 
     39 */ 
     40$config['session_key'] = 'auth_user'; 
     41 
     42/** 
    3843 * Usernames (keys) and hashed passwords (values) used by the File driver. 
     44 * Default admin password is "admin". You are encouraged to change this. 
    3945 */ 
    4046$config['users'] = array 
    4147( 
    42         // 'admin' => '4ccd0e25c2a7ffefd4b92ecbbd4781752920145f826a881073', 
     48        // 'admin' => 'b3154acf3a344170077d11bdb5fff31532f679a1919e716a02', 
    4349);