diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2017-08-29 15:18:51 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2017-08-29 16:04:11 +0200 |
commit | badbab81eacd3f4a8242fe23feb5319ee4247027 (patch) | |
tree | 1bac2bd1358a331c64bc920328ab574dddbd171a /apps/theming/lib | |
parent | 8c917cbfe0aa33e37d7cff278690b07bf40e1b62 (diff) | |
download | nextcloud-server-badbab81eacd3f4a8242fe23feb5319ee4247027.tar.gz nextcloud-server-badbab81eacd3f4a8242fe23feb5319ee4247027.zip |
Update background image to the one used on the website
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'apps/theming/lib')
-rw-r--r-- | apps/theming/lib/ThemingDefaults.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/theming/lib/ThemingDefaults.php b/apps/theming/lib/ThemingDefaults.php index dff24ee7960..b10dc4b7ea8 100644 --- a/apps/theming/lib/ThemingDefaults.php +++ b/apps/theming/lib/ThemingDefaults.php @@ -183,7 +183,7 @@ class ThemingDefaults extends \OC_Defaults { $cacheBusterCounter = $this->config->getAppValue('theming', 'cachebuster', '0'); if(!$backgroundLogo || !$backgroundExists) { - return $this->urlGenerator->imagePath('core','background.jpg') . '?v=' . $cacheBusterCounter; + return $this->urlGenerator->imagePath('core','background.png') . '?v=' . $cacheBusterCounter; } return $this->urlGenerator->linkToRoute('theming.Theming.getLoginBackground') . '?v=' . $cacheBusterCounter; |