This repository has been archived on 2025-06-10. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
server/onyx/include/common.php
2013-11-25 11:55:35 +01:00

20 lines
528 B
PHP

<?php
if(!defined('ONYX')) exit;
if (empty($sess->values["connected"]) && !defined("xCSRF"))
define("xCSRF", true);
require_once("functions.php"); //Inclusion des principales fonctions
require_once("common/Exercice.class.php");
require_once("common/Member.class.php");
require_once("common/Team.class.php");
require_once("common/Theme.class.php");
$template = new Template();
$template->assign("ERRmessage", false);
$template->assign("END", $VAR['end_challenge']);
if (!empty($LANG))
$template->assign("LANG", $LANG);