mirror of
https://gitlab.com/animath/si/plateforme.git
synced 2025-06-25 09:40:31 +02:00
Modification mineure
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
include "config.php";
|
||||
require_once "config.php";
|
||||
|
||||
$trigram = htmlspecialchars($_GET["trigram"]);
|
||||
|
||||
@ -60,7 +60,7 @@ if (isset($_POST["select"])) {
|
||||
}
|
||||
|
||||
if ($team_data === false)
|
||||
include "404.php";
|
||||
require_once "404.php";
|
||||
|
||||
$tournament_data = $DB->query("SELECT `name`, `date_start` FROM `tournaments` WHERE `id` = '" . $team_data["tournament"] . "' AND `year` = '$YEAR';")->fetch();
|
||||
|
||||
@ -74,7 +74,7 @@ if ($team_data["final_selection"]) {
|
||||
|
||||
?>
|
||||
|
||||
<?php include "header.php" ?>
|
||||
<?php require_once "header.php" ?>
|
||||
|
||||
<h2>Informations sur l'équipe</h2>
|
||||
|
||||
@ -170,4 +170,4 @@ if (!$team_data["final_selection"]) { ?>
|
||||
</form>
|
||||
<?php } ?>
|
||||
|
||||
<?php include "footer.php" ?>
|
||||
<?php require_once "footer.php" ?>
|
||||
|
Reference in New Issue
Block a user