<?php // $Revision: 1.5 $
/* vim: set expandtab ts=4 sw=4 sts=4: */
/**
* $Id: login.php,v 1.5 2003/11/22 01:39:55 madbear Exp $
*
* Copyright (c) 2003 by the NetOffice developers
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*/
$checkSession = true;
require_once('../includes/library.php');
// case session fails
if ($url != '') {
header("Location: ../login.php?url=$url");
exit;
// default case
} else {
header('Location: ../login.php');
exit;
}
?>