From 2c656b0e4c7b4774815ec06c37f22c2bc14d3ead Mon Sep 17 00:00:00 2001 From: Thomas Müller Date: Fri, 10 Apr 2015 11:17:33 +0200 Subject: Fix singe user mode on public.php - take two --- lib/base.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/base.php b/lib/base.php index 14e2b4fe1ff..1714bd1e5ef 100644 --- a/lib/base.php +++ b/lib/base.php @@ -260,7 +260,7 @@ class OC { } } - public static function checkSingleUserMode() { + public static function checkSingleUserMode($lockIfNoUserLoggedIn = false) { if (!\OCP\Config::getSystemValue('singleuser', false)) { return; } @@ -270,6 +270,10 @@ class OC { if ($group->inGroup($user)) { return; } + } else { + if(!$lockIfNoUserLoggedIn) { + return; + } } // send http status 503 header('HTTP/1.1 503 Service Temporarily Unavailable'); -- cgit v1.2.3