diff --git a/phpBB/install/update_to_latest.php b/phpBB/install/update_to_latest.php index e9482ea555..d656dece10 100644 --- a/phpBB/install/update_to_latest.php +++ b/phpBB/install/update_to_latest.php @@ -59,7 +59,7 @@ include($phpbb_root_path . 'includes/db.'.$phpEx); // // // -$updates_to_version = '.0.23'; +$updates_to_version = '.0.24'; // // // @@ -671,7 +671,8 @@ switch ($row['config_value']) } break; - + + case '.0.22': case '.0.23': switch (SQL_LAYER) @@ -1151,6 +1152,13 @@ switch ($row['config_value']) break; + case '.0.21': + case '.0.22': + case '.0.23': + $sql = 'DELETE FROM ' . SESSIONS_TABLE; + _sql($sql, $errored, $error_ary); + break; + default: echo " No updates were required

\n"; break;