26 lines
757 B
PHP
26 lines
757 B
PHP
|
<?php
|
||
|
/**
|
||
|
* GIFT CARD
|
||
|
*
|
||
|
* @category pricing_promotion
|
||
|
* @author Timactive - Romain DE VERA <support@timactive.com>
|
||
|
* @copyright Copyright (c) TIMACTIVE 2014 - Romain De Véra AI
|
||
|
* @version 1.0.0
|
||
|
* @license Commercial license
|
||
|
*
|
||
|
*************************************
|
||
|
** GIFT CARD *
|
||
|
** V 1.0.0 *
|
||
|
*************************************
|
||
|
* +
|
||
|
* + Languages: EN, FR
|
||
|
* + PS version: 1.5,1.6
|
||
|
*/
|
||
|
|
||
|
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;
|