diff options
| author | Andrew Dolgov <fox@bah.spb.su> | 2005-11-20 12:27:11 +0100 |
|---|---|---|
| committer | Andrew Dolgov <fox@bah.spb.su> | 2005-11-20 12:27:11 +0100 |
| commit | 26c5729f9d02272ae16ca165bc320e5a1dc5115b (patch) | |
| tree | 1caf1cc131e739093e1943a39ffce3d2d86ca9ea /functions.php | |
| parent | b8aa49bc97bf0de775caf4689e3db3a226a7378a (diff) | |
more http auth related work, logout still doesn't work
Diffstat (limited to 'functions.php')
| -rw-r--r-- | functions.php | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/functions.php b/functions.php index 32540bf56..16b5dac67 100644 --- a/functions.php +++ b/functions.php @@ -678,12 +678,8 @@ exit; } } else { - $force_logout = $_POST["ForceLogout"]; - - if (!http_authenticate_user($link, $force_logout == "yes")) { - if (!http_authenticate_user($link, true)) { - exit; - } + if (!http_authenticate_user($link, false)) { + exit; } } } else { |