Split out functionality that gathers system specs
[squirrelmail.git] / plugins / filters / index.php
index de0b3693d796b6518a9e4f945eb56780cfa564e1..e4b52db3f25689431fb525847dfabee9f2594039 100644 (file)
@@ -1,20 +1,17 @@
 <?php
+/**
+ *  index.php -- Displays the main frameset
+ *
+ *  Redirects to the login page.
+ *
+ * @version $Id$
+ * @copyright (c) 1999-2004 The SquirrelMail Project Team
+ * @license http://opensource.org/licenses/gpl-license.php GNU Public License
+ * @package plugins
+ * @subpackage filters
+ */
 
-   /**
-    **  index.php -- Displays the main frameset
-    **
-    **  Copyright (c) 1999-2002 The SquirrelMail development team
-    **  Licensed under the GNU GPL. For full terms see the file COPYING.
-    **
-    **  Redirects to the login page.
-    **
-    **  $Id$
-    **/
-
-   require_once('../../functions/strings.php');
-
-   $location = get_location();
-   header("Location: $location/src/login.php\n\n");
+   header("Location:../../src/login.php\n\n");
    exit();
 
 ?>