diff options
author | Irina Gómez <irinagomez@us.es> | 2021-01-20 14:28:06 +0100 |
---|---|---|
committer | Irina Gómez <irinagomez@us.es> | 2021-01-20 14:28:06 +0100 |
commit | e8afc9fbb8de2f5fa8346cadfe86ab71c69f70ce (patch) | |
tree | 8debbbf489c6000688a87a5fd048146c4d7aa74a /admin | |
parent | 1b5b34ff0e2cea8ec31f1adce09bb2255a7fcd1b (diff) |
#839 Fixes problem of expulsion of the user from the session at 15min.
Diffstat (limited to 'admin')
-rw-r--r-- | admin/WebConsole/rest/remotepc.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/admin/WebConsole/rest/remotepc.php b/admin/WebConsole/rest/remotepc.php index 428d5252..0d8491c0 100644 --- a/admin/WebConsole/rest/remotepc.php +++ b/admin/WebConsole/rest/remotepc.php @@ -208,7 +208,8 @@ CREATE EVENT e_timeout_$clntid END IF; END EOD; - $t3 = $cmd->Ejecutar(); + // #839 Fixes problem of expulsion of the user from the session at 15min + $t3=1; //$t3 = $cmd->Ejecutar(); if ($t1 and $t2 and $t3) { // Commit transaction on success. $cmd->texto = "COMMIT;"; |