From a33edcd2f0a74884f284166d80d23ad22b822b64 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/base.php') diff --git a/lib/base.php b/lib/base.php index 02b55458f1f..7deaf271e4d 100644 --- a/lib/base.php +++ b/lib/base.php @@ -301,7 +301,7 @@ class OC { } } - public static function checkSingleUserMode() { + public static function checkSingleUserMode($lockIfNoUserLoggedIn = false) { if (!\OC::$server->getSystemConfig()->getValue('singleuser', false)) { return; } @@ -311,6 +311,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