26 lines
902 B
PHP
26 lines
902 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* 1997-2016 Quadra Informatique
|
||
|
*
|
||
|
* NOTICE OF LICENSE
|
||
|
*
|
||
|
* This source file is subject to the Open Software License (OSL 3.0) that is available
|
||
|
* through the world-wide-web at this URL: http://www.opensource.org/licenses/OSL-3.0
|
||
|
* If you are unable to obtain it through the world-wide-web, please send an email
|
||
|
* to modules@quadra-informatique.fr so we can send you a copy immediately.
|
||
|
*
|
||
|
* @author Quadra Informatique <modules@quadra-informatique.fr>
|
||
|
* @copyright 1997-2016 Quadra Informatique
|
||
|
* @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
|
||
|
*/
|
||
|
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
|
||
|
header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
|
||
|
|
||
|
header('Cache-Control: no-store, no-cache, must-revalidate');
|
||
|
header('Cache-Control: post-check=0, pre-check=0', false);
|
||
|
header('Pragma: no-cache');
|
||
|
|
||
|
header('Location: ../');
|
||
|
exit;
|