-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
20 lines (17 loc) · 536 Bytes
/
index.php
File metadata and controls
20 lines (17 loc) · 536 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php
/**
* index.php
*
* This file simply takes any attempt to view source files and sends those
* people to the login screen. At this point no attempt is made to see if the
* person is logged in or not.
*
* @copyright 1999-2020 The SquirrelMail Project Team
* @modified 2018-2020 Andrew Sachen
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
* @version $Id: index.php 1.4 2020-11-01 23:50:00Z realityripple $
* @package plugins
* @subpackage spamcop
*/
header('Location: ../index.php');
?>