From 1e07bc3dffe4b090a7c7285990332b844b42d06a Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Thu, 16 Dec 2010 11:15:45 +0800 Subject: [PATCH] Pman/Login.php --- Pman/Login.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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()); } -- 2.39.2