File: index.php

package info (click to toggle)
squirrelmail 2%3A1.4.4-11
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 3,496 kB
  • ctags: 6,546
  • sloc: php: 32,906; perl: 3,049; sh: 166; ansic: 122; makefile: 83
file content (17 lines) | stat: -rw-r--r-- 406 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php
/**
 *  index.php -- Displays the main frameset
 *
 * Redirects to the login page.
 *
 * @copyright (c) 1999-2005 The SquirrelMail development team
 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
 * @version $Id: index.php,v 1.2.2.2 2004/12/27 15:03:58 kink Exp $
 * @package plugins
 * @subpackage info
 */

   header("Location:../../src/login.php\n\n");
   exit();

?>