From 806271e6b25032da4df7e24860013c26bdf201e7 Mon Sep 17 00:00:00 2001 From: antux18 Date: Sun, 1 Sep 2024 22:23:54 +0200 Subject: [PATCH] =?UTF-8?q?Si=20on=20arrive=20sur=20l'=C3=A9nigme=20bonus?= =?UTF-8?q?=20alors=20qu'elle=20n'est=20pas=20encore=20d=C3=A9bloqu=C3=A9e?= =?UTF-8?q?,=20une=20autre=20=C3=A9nigme=20est=20choisie=20au=20hasard.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- article.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/article.php b/article.php index abe506d..a25d586 100644 --- a/article.php +++ b/article.php @@ -27,9 +27,10 @@ else { // On vérifie si l'énigme bonus n'est pas débloquée : if (!$database->checkTeamBonus($team_id)) { - // Si c'est celle qui est sélectionnée, on retourne à la page d'accueil : + // Si c'est celle qui est sélectionnée, on choisit une autre énigme : if ($art_id == $bonus) { - header("Location: index.php"); + $next_art = $database->getNextPuzzle($team_id); + header("Location: article.php?team=" . $team_id . "&id=" . $next_art); die(); } }