diff options
author | Robin Appelman <robin@icewind.nl> | 2016-11-21 14:00:41 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-21 14:00:41 +0100 |
commit | efdef8f801bd33b5c2e4d982947a4ff41e2514ab (patch) | |
tree | 3122610b3affe26f7391de6bd99fc7002eb7b625 | |
parent | 3d9077ae3a29ab9f44ac581d7661cda0ef2d52a7 (diff) | |
parent | 58685413d270d7ee58fe7d19b2be74c84301b210 (diff) | |
download | nextcloud-server-efdef8f801bd33b5c2e4d982947a4ff41e2514ab.tar.gz nextcloud-server-efdef8f801bd33b5c2e4d982947a4ff41e2514ab.zip |
Merge pull request #2211 from nextcloud/maintenance-wsod
fix white screen of death in maintenance mode when theming is disabled
-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; + } } |