From: Andrew Dolgov Date: Fri, 16 Jun 2006 12:23:26 +0000 (+0100) Subject: initialize user theme in SINGLE_USER_MODE (closes #72) X-Git-Tag: 1.2.1~18 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=0bbba72d3848fdae6aa9dd5a0cb7150be76007ca;p=tt-rss.git initialize user theme in SINGLE_USER_MODE (closes #72) --- diff --git a/functions.php b/functions.php index ab548c2f..4c05e7cb 100644 --- a/functions.php +++ b/functions.php @@ -876,6 +876,13 @@ $_SESSION["uid"] = 1; $_SESSION["name"] = "admin"; + $user_theme = get_user_theme_path($link); + + $_SESSION["theme"] = $user_theme; + $_SESSION["ip_address"] = $_SERVER["REMOTE_ADDR"]; + + initialize_user_prefs($link, $_SESSION["uid"]); + return true; } } @@ -1005,9 +1012,7 @@ } } } else { - $_SESSION["uid"] = 1; - $_SESSION["name"] = "admin"; - initialize_user_prefs($link, 1); + return authenticate_user($link, "admin", null); } }