mirror of
https://gitlab.com/animath/si/plateforme-corres2math.git
synced 2024-12-26 08:22:19 +00:00
5c88ccb91a
Les Correspondances peuvent démarrer :)
17 lines
376 B
PHP
17 lines
376 B
PHP
<?php
|
|
|
|
$problem = htmlspecialchars($_GET["probleme"]);
|
|
|
|
if (!preg_match("#[0-4]#", $problem))
|
|
require_once "server_files/404.php";
|
|
|
|
if (!isset($_SESSION["user_id"]) || $_SESSION["role"] != Role::ADMIN)
|
|
require_once "server_files/403.php";
|
|
|
|
$has_error = false;
|
|
$error_message = null;
|
|
|
|
$teams = Team::getAllTeams($problem);
|
|
|
|
require_once "server_files/views/probleme.php";
|