require_once("squasher.class.php");
-$vars['debug'] = $_GET['debug'];
-$vars['newtpl'] = $_GET['newtpl'];
-$tools = $_GET['tools'];
-
-foreach($_POST AS $key => $value)
- $submitted[$key]=$value;
-
$salt = md5($_SERVER['REMOTE_ADDR']."|".$_SERVER['HTTP_USER_AGENT']);
-if ($tools=="logout"){
+if (@$_GET['tools']=="logout"){
session_destroy();
$_SESSION['creds']['validated'] = false;
header( 'Location: '.$_SERVER['PHP_SELF'] ) ;
}
-if (!$_SESSION['creds']['validated']){
- validate_user($_POST['user'], $_POST['pass'], $salt);
+if (!@$_SESSION['creds']['validated']){
+ validate_user(@$_POST['user'], @$_POST['pass'], $salt);
}
-if ($_SESSION['creds']['validated'] || isset($_GET['f'])) {
+if ($_SESSION['creds']['validated'] || @$_GET['f']) {
//if ($_SESSION['creds']['validated']){
//load squasher
include("squasher.php");
$smarty = new Smarty;
- $smarty->assign('salt',$salt);
- $smarty->assign('debug',$debug);
+ $smarty->assign('salt', $salt);
+ $smarty->assign('debug', @$_GET['debug']);
$smarty->display('login.tpl');
}
// vim: syntax=php ts=4 sw=4 sts=4 sr noet