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 /public.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 'public.php')
-rw-r--r-- | public.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/public.php b/public.php index 8f3bc8e6ae9..f390166d06e 100644 --- a/public.php +++ b/public.php @@ -37,7 +37,7 @@ try { } OC::checkMaintenanceMode(); - OC::checkSingleUserMode(); + OC::checkSingleUserMode(true); $request = \OC::$server->getRequest(); $pathInfo = $request->getPathInfo(); |