diff options
author | Robin Appelman <robin@icewind.nl> | 2016-11-21 13:10:55 +0100 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2016-11-21 13:10:55 +0100 |
commit | 58685413d270d7ee58fe7d19b2be74c84301b210 (patch) | |
tree | 756408c6000689438ef71eef861fd58dd42d7024 /lib | |
parent | ba9b17c9069c5d9fe8595ffd306647f33067c927 (diff) | |
download | nextcloud-server-58685413d270d7ee58fe7d19b2be74c84301b210.tar.gz nextcloud-server-58685413d270d7ee58fe7d19b2be74c84301b210.zip |
fix white screen of death in maintenance mode when theming is disabled
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/legacy/defaults.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/private/legacy/defaults.php b/lib/private/legacy/defaults.php index 23590cd9235..6abc399bc82 100644 --- a/lib/private/legacy/defaults.php +++ b/lib/private/legacy/defaults.php @@ -283,4 +283,7 @@ class OC_Defaults { } } + public function shouldReplaceIcons() { + return false; + } } |