Changeset 23
- Timestamp:
- 04/09/07 17:09:05
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
FreakAuth/trunk/www/system/application/config/freakauth_light.php
r2 r23 50 50 $config['FAL_use_security_code_register'] = TRUE; //Whether to use CAPTCHA (security code) functionality for registration. 51 51 52 $config['FAL_temporary_users_expiration'] = 3600*24; //the time that an new registered user for activation (default 1 day) 52 $config['FAL_temporary_users_expiration'] = 3600*24; //the time that a new registered user has for activation (default 1 day) 53 // (if you change this, remember to change email contents as well !!!) 53 54 54 55 //------------------------------------ … … 83 84 $config['FAL_security_code_image_path'] = 'tmp/'; //Folder to save the captcha background image (relative to the folder in which the index.php resides) 84 85 //this folder must be writable 85 $config['FAL_security_code_image'] = ''; //name of the generate image (l ive it blank!!!!!!)86 $config['FAL_security_code_image'] = ''; //name of the generate image (leave it blank!!!!!!) 86 87 87 88 //------------------------------------ FreakAuth/trunk/www/system/application/controllers/auth.php
r19 r23 104 104 $this->validation->set_rules($rules); 105 105 106 //everything went ok login the userand redirect him to the homepage106 //everything went ok, let's log the user in and redirect him to the homepage 107 107 if ($this->validation->run() && $this->freakauth_light->login()) 108 108 { … … 207 207 } 208 208 209 //redisplay the loginform209 //redisplay the register form 210 210 else 211 211 {
