Merge pull request #2417 from annando/1603-sess_data

There is no table "sess_data" - this database call is useless
2022.09-rc
fabrixxm 2016-03-18 18:46:28 +01:00
commit bfde20f5fe
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -69,7 +69,7 @@ function ref_session_destroy ($id) {
if(! function_exists('ref_session_gc')) {
function ref_session_gc($expire) {
q("DELETE FROM `session` WHERE `expire` < %d", dbesc(time()));
q("OPTIMIZE TABLE `sess_data`");
//q("OPTIMIZE TABLE `sess_data`");
return true;
}}