diff options
| author | Andrew Dolgov <fox@bah.spb.su> | 2005-11-20 11:14:38 +0100 |
|---|---|---|
| committer | Andrew Dolgov <fox@bah.spb.su> | 2005-11-20 11:14:38 +0100 |
| commit | 8cb7480484d03a06663ac031ad3db33ea46b77ae (patch) | |
| tree | a5d486db88c66f3d2177917195e633f2b9ebc242 /prefs.php | |
| parent | 2317ffaae70ec345add4eb90c4f79d74ca831e8b (diff) | |
fix http basic authentication
Diffstat (limited to 'prefs.php')
| -rw-r--r-- | prefs.php | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -12,11 +12,12 @@ if (!USE_HTTP_AUTH) { if (!$_SESSION["uid"]) { - header("Location: login.php?rt=prefs.php"); + header("Location: login.php?rt=tt-rss.php"); exit; } } else { - authenticate_user($link); + $force_logout = $_POST["ForceLogout"]; + http_authenticate_user($link, $force_logout == "yes"); } } else { $_SESSION["uid"] = 1; |