diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-04-10 11:17:33 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-04-10 11:17:33 +0200 |
commit | a33edcd2f0a74884f284166d80d23ad22b822b64 (patch) | |
tree | 2834518634eaad2e46b84c59b0fc02d9df073544 /lib/base.php | |
parent | f05e19348d21c96455adb305328acc7cbfa0f26a (diff) | |
download | nextcloud-server-a33edcd2f0a74884f284166d80d23ad22b822b64.tar.gz nextcloud-server-a33edcd2f0a74884f284166d80d23ad22b822b64.zip |
Fix singe user mode on public.php - take two
Diffstat (limited to 'lib/base.php')
-rw-r--r-- | lib/base.php | 6 |
1 files changed, 5 insertions, 1 deletions
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'); |