Skip to content
Snippets Groups Projects
Commit 82ca828b authored by Neil Drumm's avatar Neil Drumm :wave:
Browse files

#82806 by dww. Remove warning for updating without performing any updates.

parent b7341701
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -420,7 +420,7 @@ function update_progress_page() {
* the overall percentage finished. The second element is a status message.
*/
function update_do_updates() {
while (($update = reset($_SESSION['update_remaining']))) {
while (isset($_SESSION['update_remaining']) && ($update = reset($_SESSION['update_remaining']))) {
$update_finished = update_data($update['module'], $update['version']);
if ($update_finished == 1) {
// Dequeue the completed update.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment