1<?php
2/**
3 * Copyright (C) 2018-2019 thirty bees
4 *
5 * NOTICE OF LICENSE
6 *
7 * This source file is subject to the Academic Free License (AFL 3.0)
8 * that is bundled with this package in the file LICENSE.md.
9 * It is also available through the world-wide-web at this URL:
10 * https://opensource.org/licenses/afl-3.0.php
11 * If you did not receive a copy of the license and are unable to
12 * obtain it through the world-wide-web, please send an email
13 * to license@thirtybees.com so we can send you a copy immediately.
14 *
15 * @author    thirty bees <modules@thirtybees.com>
16 * @copyright 2018-2019 thirty bees
17 * @license   Academic Free License (AFL 3.0)
18 */
19
20header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
21header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
22
23header('Cache-Control: no-store, no-cache, must-revalidate');
24header('Cache-Control: post-check=0, pre-check=0', false);
25header('Pragma: no-cache');
26
27header('Location: ../');
28
29exit;
30