1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-31 15:51:29 +00:00

optional SINGLE_USER_MODE

This commit is contained in:
Andrew Dolgov
2005-11-18 07:29:36 +01:00
parent c8437f35c6
commit 7d4c898ab3
4 changed files with 56 additions and 31 deletions

View File

@@ -8,13 +8,19 @@
$link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
if (!USE_HTTP_AUTH) {
if (!$_SESSION["uid"]) {
header("Location: login.php");
exit;
if (!SINGLE_USER_MODE) {
if (!USE_HTTP_AUTH) {
if (!$_SESSION["uid"]) {
header("Location: login.php");
exit;
}
} else {
authenticate_user($link);
}
} else {
authenticate_user($link);
$_SESSION["uid"] = 1;
$_SESSION["name"] = "admin";
}
initialize_user_prefs($link, $_SESSION["uid"]);
@@ -70,7 +76,9 @@
<div id="notify"><span id="notify_body"></div>
</td>
</tr><tr><td class="welcomePrompt">
<? if (!SINGLE_USER_MODE) { ?>
Hello, <b><?= $_SESSION["name"] ?></b> (<a href="logout.php">Logout</a>)</td>
<? } ?>
</tr></table>
</td>
</tr>