This commit is contained in:
exodus4d
2015-08-11 19:06:53 +02:00
parent 57367ce99c
commit 58b4b1b0c0
21 changed files with 736 additions and 445 deletions

View File

@@ -17,17 +17,18 @@ class AccessController extends Controller {
/**
* event handler
* @param $f3
*/
function beforeroute() {
function beforeroute($f3) {
$loginCheck = $this->_checkLogIn();
if( !$loginCheck ){
// no user found or LogIn timer expired
$this->logOut();
$this->logOut($f3);
}
parent::beforeroute();
parent::beforeroute($f3);
}
/**