fixed problem with leaving cookies mode.

This commit is contained in:
seek3r 2000-10-05 07:11:49 +00:00
parent 679d9841f3
commit 438d01c4aa
2 changed files with 4 additions and 0 deletions

View File

@ -71,6 +71,8 @@
return "<font color=FF0000>" . lang("Bad login or password") . "</font>";
break;
case "10":
Setcookie("sessionid");
Setcookie("kp3");
return "<font color=FF0000>" . lang("Your session could not be verified.") . "</font>";
break;
default:

View File

@ -56,6 +56,8 @@
}
$phpgw->session->destroy();
}
Setcookie("sessionid");
Setcookie("kp3");
Header("Location: " . $phpgw_info["server"]["webserver_url"] . "/login.php?cd=1");
?>