mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-27 08:19:45 +01:00
If the menuaction variable is present, it will now add that for the session_action, this is meant for the 3 teir design
This commit is contained in:
parent
246edc94a5
commit
393a9924dd
@ -285,9 +285,18 @@
|
|||||||
// This will update the DateLastActive column, so the login does not expire
|
// This will update the DateLastActive column, so the login does not expire
|
||||||
function update_dla()
|
function update_dla()
|
||||||
{
|
{
|
||||||
global $phpgw_info, $phpgw, $PHP_SELF;
|
global $phpgw_info, $phpgw, $PHP_SELF, $menuaction;
|
||||||
|
|
||||||
$phpgw->db->query("update phpgw_sessions set session_dla='" . time() . "', session_action='$PHP_SELF' "
|
if ($menuaction)
|
||||||
|
{
|
||||||
|
$action = $menuaction;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$action = $PHP_SELF;
|
||||||
|
}
|
||||||
|
|
||||||
|
$phpgw->db->query("update phpgw_sessions set session_dla='" . time() . "', session_action='$action' "
|
||||||
. "where session_id='" . $this->sessionid."'",__LINE__,__FILE__);
|
. "where session_id='" . $this->sessionid."'",__LINE__,__FILE__);
|
||||||
|
|
||||||
$phpgw->db->query("update phpgw_app_sessions set session_dla='" . time() . "' "
|
$phpgw->db->query("update phpgw_app_sessions set session_dla='" . time() . "' "
|
||||||
|
Loading…
Reference in New Issue
Block a user