1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-07-01 12:41:17 +02:00

Modification mineure

This commit is contained in:
galaxyoyo
2019-09-05 19:07:41 +02:00
parent 39abeec4e6
commit d2a0d0fbec
22 changed files with 621 additions and 621 deletions

View File

@ -1,9 +1,9 @@
<?php
include 'config.php';
require_once 'config.php';
if (!isset($_SESSION["team_id"]))
include "403.php";
require_once "403.php";
if (isset($_POST["send_solution"])) {
$error_message = saveSolution();
@ -60,7 +60,7 @@ function saveSolution() {
?>
<?php include 'header.php' ?>
<?php require_once 'header.php' ?>
<?php if (isset($error_message)) {
if ($error_message !== false) {
@ -120,4 +120,4 @@ while (($data = $solutions_req->fetch()) !== false) {
}
?>
<?php include 'footer.php' ?>
<?php require_once 'footer.php' ?>