Show
Ignore:
Timestamp:
09/11/08 15:04:23 (2 months ago)
Author:
aarkerio
Message:

New wikpages

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/app/app_controller.php

    r699 r765  
    2020 public function beforeFilter() 
    2121 { 
    22    //set locale 
     22   //set locale (es or en by now) 
    2323   $this->__setLocale(); 
    2424 
    25    // Auth stuff 
     25   // Auth configuratin 
    2626   $this->Auth->fields         = array('username'   => 'email', 'password' => 'pwd'); 
    2727   $this->Auth->loginAction    = array('controller' => 'users', 'action'   => 'login'); 
     
    4949 { 
    5050     $this->Session->setFlash($msg); // http://manual.cakephp.org/chapter/session 
    51           
    52      $this->redirect($to); 
    53         
    54      exit; 
     51     $this->redirect($to);        
     52     return true; 
    5553 } 
    5654