index.php 430 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. ** index.php -- Displays the main frameset
  4. **
  5. ** Copyright (c) 1999-2000 The SquirrelMail development team
  6. ** Licensed under the GNU GPL. For full terms see the file COPYING.
  7. **
  8. ** Redirects to the login page.
  9. **
  10. ** $Id$
  11. **/
  12. require_once('../../../functions/strings.php');
  13. $location = get_location();
  14. header("Location: $location/src/login.php\n\n");
  15. exit();
  16. ?>