in "libraries\plugins\AuthenticationPlugin.php", line 96:
session_unset(); session_destroy();
I think it's better that you manually unset the parameters that needs to be deleted, instead deleting the whole session. I am having much problems, because PMA destroys all my other sessions too.
(btw, it is nicely done like in: "libraries\sessions.inc.php" , line 26, where it checks if session exists, it just closes);
Hello
On Thu, 2018-03-08 at 15:13 +0400, Selno Meria via Developers wrote:
in "libraries\plugins\AuthenticationPlugin.php", line 96:
session_unset(); session_destroy();
I think it's better that you manually unset the parameters that needs to be deleted, instead deleting the whole session. I am having much problems, because PMA destroys all my other sessions too.
Destroys other sessions? This destroys only currently active session, what is phpMyAdmin owned one. In case you're sharing session with phpMyAdmin, you're doing something wrong.
(btw, it is nicely done like in: "libraries\sessions.inc.php" , line 26, where it checks if session exists, it just closes);
This is only in case there is different session (just check the code above).