You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Page de gestion importé par la page d'administration centrale permettant la gestion des domaines.
|
|
|
|
*/
|
|
|
|
|
|
|
|
require_once($_SERVER["DOCUMENT_ROOT"]."/services/fonctions/sessions/privileges.php");
|
|
|
|
|
|
|
|
if (testPrivileges()!="administrateur") {
|
|
|
|
header("Location: /pages/visiteurs/formulaire_accueil.php?erreur=2");
|
|
|
|
die();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
echo "<h1>Page domaines.php</h1>";
|
|
|
|
|
|
|
|
|
|
|
|
require_once($_SERVER["DOCUMENT_ROOT"]."/inclusions/pied.php");
|
|
|
|
|
|
|
|
?>
|