diff options
author | plegall <plg@piwigo.org> | 2016-02-12 17:44:27 +0100 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2016-02-12 17:44:27 +0100 |
commit | 25edfc2663a0d87e6216981c44dadb52d1f8ab72 (patch) | |
tree | 711eab9350a82a3836677d20b34cebd862686ada /admin | |
parent | 2561928b80f4dae1d460bec2e9c268edf6a5d802 (diff) |
feature #383, dedicated function to delete sessions
Diffstat (limited to 'admin')
-rw-r--r-- | admin/include/functions.php | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/admin/include/functions.php b/admin/include/functions.php index b377fc7a6..04a83d0bc 100644 --- a/admin/include/functions.php +++ b/admin/include/functions.php @@ -405,11 +405,7 @@ DELETE FROM '.$table.' } // purge of sessions - $query = ' -DELETE FROM '.SESSIONS_TABLE.' - WHERE data LIKE \'%pwg_uid|i:'.(int)$user_id.';%\' -;'; - pwg_query($query); + delete_user_sessions($user_id); // destruction of the user $query = ' |