Changeset 23

Show
Ignore:
Timestamp:
04/09/07 17:09:05
Author:
grahack
Message:

FAL: added or corrected some comments

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • FreakAuth/trunk/www/system/application/config/freakauth_light.php

    r2 r23  
    5050$config['FAL_use_security_code_register'] = TRUE; //Whether to use CAPTCHA (security code) functionality for registration. 
    5151 
    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 !!!) 
    5354 
    5455//------------------------------------ 
     
    8384$config['FAL_security_code_image_path'] = 'tmp/';                                       //Folder to save the captcha background image (relative to the folder in which the index.php resides) 
    8485                                                                                                                                                                        //this folder must be writable                                                                                                                                                                   
    85 $config['FAL_security_code_image'] = '';                //name of the generate image (live it blank!!!!!!) 
     86$config['FAL_security_code_image'] = '';                //name of the generate image (leave it blank!!!!!!) 
    8687 
    8788//------------------------------------ 
  • FreakAuth/trunk/www/system/application/controllers/auth.php

    r19 r23  
    104104        $this->validation->set_rules($rules); 
    105105         
    106         //everything went ok login the user and redirect him to the homepage 
     106        //everything went ok, let's log the user in and redirect him to the homepage 
    107107        if ($this->validation->run() && $this->freakauth_light->login()) 
    108108        { 
     
    207207        } 
    208208         
    209         //redisplay the login form 
     209        //redisplay the register form 
    210210        else 
    211211        {