Fixed line breaks that didn't allow xgetpo to work
[squirrelmail.git] / index.php
CommitLineData
59177427 1<?php
8863d46c 2
3 /**
4 ** index.php -- Displays the main frameset
5 **
6c6c7e4f 6 ** Copyright (c) 1999-2001 The SquirrelMail development team
8863d46c 7 ** Licensed under the GNU GPL. For full terms see the file COPYING.
8 **
9 ** Redirects to the login page.
10 **
11 ** $Id$
12 **/
13
14 require_once('./functions/strings.php');
8241c8d9 15
1195c340 16 $location = get_location();
2e8d4c5b 17 header("Location: $location/src/login.php\n\n");
8241c8d9 18 exit();
8863d46c 19?>