Parent Directory | Revision Log
* Création de la branche pour l'évolution du workflow.
1 | <?php |
2 | /** |
3 | * Ce fichier permet de faire une redirection vers la page de login de |
4 | * l'application. |
5 | * |
6 | * @package openmairie_exemple |
7 | * @version SVN : $Id: index.php 4418 2015-02-24 17:30:28Z tbenita $ |
8 | */ |
9 | |
10 | // |
11 | $came_from = ""; |
12 | if (isset($_GET['came_from'])) { |
13 | $came_from = $_GET['came_from']; |
14 | } |
15 | |
16 | // |
17 | header("Location: scr/login.php?came_from=".urlencode($came_from)); |
18 | |
19 | ?> |
[email protected] | ViewVC Help |
Powered by ViewVC 1.1.26 |