From: Alan Knowles Date: Thu, 16 Dec 2010 03:15:45 +0000 (+0800) Subject: Pman/Login.php X-Git-Url: http://git.roojs.org/?p=Pman.Base;a=commitdiff_plain;h=1e07bc3dffe4b090a7c7285990332b844b42d06a Pman/Login.php --- diff --git a/Pman/Login.php b/Pman/Login.php index 7fc99ef..1839cdd 100644 --- a/Pman/Login.php +++ b/Pman/Login.php @@ -129,14 +129,16 @@ class Pman_Login extends Pman if (!$this->authUser || ($this->authUser->company_id_comptype != 'OWNER') || !$this->hasPerm('Core.Person', 'E')) { $this->jerr("User switching not permitted"); } - + $old = clone($this->authUser); $tbl = empty($ff->Pman['authTable']) ? 'Person' : $ff->Pman['authTable']; $u = DB_DataObject::factory($tbl); $u->get($id); if (!$u->active()) { $this->jerr('Account disabled'); } - + $u->login(); + // we might need this later.. + $this->addEvent("SWITCH USER", false, session_id()); }