13 lines
309 B
PHP
13 lines
309 B
PHP
<?php
|
|
/**
|
|
* Redirects to the login page.
|
|
*
|
|
* @copyright (c) 1999-2004 The SquirrelMail development team
|
|
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
|
|
* @version $Id$
|
|
* @package squirrelmail
|
|
* @subpackage strings
|
|
*/
|
|
header("Location:../../src/login.php\n\n");
|
|
exit();
|
|
?>
|