redirect / indexes to login page
authorteepe <teepe@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Tue, 25 Dec 2001 01:15:32 +0000 (01:15 +0000)
committerteepe <teepe@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Tue, 25 Dec 2001 01:15:32 +0000 (01:15 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@1925 7612ce4b-ef26-0410-bec9-ea0150e637f0

plugins/translate/index.php [new file with mode: 0644]

diff --git a/plugins/translate/index.php b/plugins/translate/index.php
new file mode 100644 (file)
index 0000000..de0b369
--- /dev/null
@@ -0,0 +1,20 @@
+<?php
+
+   /**
+    **  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");
+   exit();
+
+?>