forked from JeromeDevome/GRR
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvalidation.php
More file actions
26 lines (23 loc) · 758 Bytes
/
validation.php
File metadata and controls
26 lines (23 loc) · 758 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php
/**
* validation.php
* Interface de validation d'une réservation modérée
* Ce script fait partie de l'application GRR
* Dernière modification : $Date: 2024-04-02 19:24$
* @author Laurent Delineau & JeromeB & Yan Naessens
* @copyright Copyright 2003-2024 Team DEVOME - JeromeB
* @link http://www.gnu.org/licenses/licenses.html
*
* This file is part of GRR.
*
* GRR is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*/
if (isset($_GET['id']))
$id= intval($_GET['id']);
else
$id = 0;
header("Location: app.php?p=vuereservation&id=".$id);
?>