use email instead of username in the online table

This commit is contained in:
SJ
2013-09-11 09:25:56 +02:00
parent 1229e10bfc
commit f3742a5a86
3 changed files with 7 additions and 5 deletions

View File

@ -11,6 +11,7 @@ class ControllerLoginLogout extends Controller {
$this->layout = "common/layout-empty";
$request = Registry::get('request');
$session = Registry::get('session');
$db = Registry::get('db');
@ -21,7 +22,7 @@ class ControllerLoginLogout extends Controller {
if(ENABLE_SAAS == 1) {
$this->load->model('saas/customer');
$this->model_saas_customer->offline(Registry::get('username'));
$this->model_saas_customer->offline($session->get('email'));
}
logout();