From b47982828ad9c224fa83bcce3c4880cfd04b55d4 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 13 Feb 2009 15:13:29 +0300 Subject: backend/rss: allow access to feeds without authentication when running in single user mode --- backend.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/backend.php b/backend.php index 9b5203e85..925f81087 100644 --- a/backend.php +++ b/backend.php @@ -462,6 +462,10 @@ $match_on = db_escape_string($_GET["m"]); $search_mode = db_escape_string($_GET["smode"]); + if (SINGLE_USER_MODE) { + authenticate_user($link, "admin", null); + } + if (!$_SESSION["uid"] && $user && $pass) { authenticate_user($link, $user, $pass); } -- cgit v1.2.3