15 lines
402 B
PHP
Executable file
15 lines
402 B
PHP
Executable file
<?php
|
|
/**
|
|
* plugins/forced_prefs/setup.php -- Displays the main frameset
|
|
*
|
|
* SquirrelMail Forced Prefs Plugin
|
|
* Copyright (C) 2004 Tomas Kuliavas <tokul@users.sourceforge.net>
|
|
* This program is licensed under GPL. See COPYING for details
|
|
*
|
|
* Redirects to the login page.
|
|
*
|
|
* $Id: index.php,v 1.1.1.1 2004/03/21 10:36:27 tomas Exp $
|
|
*/
|
|
header("Location: ../../src/login.php\n\n");
|
|
exit();
|
|
?>
|