[FEAT] Move Legacy code into a legacy directory

This commit is contained in:
NADAL Jean-Baptiste
2026-02-13 10:44:51 +01:00
parent bfb703e6b9
commit 5066e1d54f
142 changed files with 194 additions and 0 deletions

22
legacy/Scripts/logout.php Normal file
View File

@@ -0,0 +1,22 @@
<?
/*
*********************************************************************
* File : $RCSfile: logout.php,v $
* Version : $Revision: 1.4 $
* Modified by : $Author: jb $ ($Date: 2002/12/14 19:59:27 $)
*********************************************************************
*/
require "conf.php";
require "ErreurConnect.php";
session_start ();
global $pseudo;
session_destroy (); /*We close the curent session*/
header("Location:$racine/index.php");
exit();
?>