mirror of
https://gitlab.com/animath/si/plateforme.git
synced 2025-07-01 04:41:17 +02:00
Modification mineure
This commit is contained in:
@ -1,9 +1,9 @@
|
||||
<?php include 'config.php'; ?>
|
||||
<?php require_once 'config.php'; ?>
|
||||
|
||||
<?php
|
||||
|
||||
if (!isset($_SESSION["role"]) || $_SESSION["role"] != "ADMIN" && $_SESSION["role"] != "ORGANIZER")
|
||||
include "403.php";
|
||||
require_once "403.php";
|
||||
|
||||
if (isset($_POST["download_zip"])) {
|
||||
$id = $_POST["tournament"];
|
||||
@ -43,7 +43,7 @@ if (isset($_POST["download_zip"])) {
|
||||
|
||||
?>
|
||||
|
||||
<?php include 'header.php'; ?>
|
||||
<?php require_once 'header.php'; ?>
|
||||
|
||||
<?php
|
||||
|
||||
@ -78,4 +78,4 @@ while (($data_tournament = $req->fetch()) !== false) {
|
||||
|
||||
?>
|
||||
|
||||
<?php include 'footer.php'; ?>
|
||||
<?php require_once 'footer.php'; ?>
|
||||
|
Reference in New Issue
Block a user