1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-01 08:59:14 +00:00

fix http basic authentication

This commit is contained in:
Andrew Dolgov
2005-11-20 11:14:38 +01:00
parent 2317ffaae7
commit 8cb7480484
5 changed files with 32 additions and 8 deletions

View File

@@ -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;