Add one more person
[squirrelmail.git] / class / index.php
CommitLineData
843204d4 1<?php
2
3/**
4 * index.php
5 *
843204d4 6 * This file simply takes any attempt to view source files and sends those
e392edc2 7 * people to the login screen. At this point no attempt is made to see if the
8 * person is logged in or not.
843204d4 9 *
22387c8d 10 * @copyright 1999-2017 The SquirrelMail Project Team
e392edc2 11 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
883d9cd3 12 * @version $Id$
2b646597 13 * @package squirrelmail
843204d4 14 */
15
e392edc2 16header('Location: ../index.php');
843204d4 17
91e0dccc 18?>