diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-10-08 10:33:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-08 10:33:22 +0200 |
commit | 7971ba5cc66201830e5b4b141d2478efa2257c75 (patch) | |
tree | eb176aa378f22ce09be1e64742f23304d7e25de3 /apps/theming/lib/ImageManager.php | |
parent | 75f4b7b1918f56afe18e1ec77d4e1f41ce776383 (diff) | |
parent | 044ab0cbecf46d537e892dfa4efd862182798291 (diff) | |
download | nextcloud-server-7971ba5cc66201830e5b4b141d2478efa2257c75.tar.gz nextcloud-server-7971ba5cc66201830e5b4b141d2478efa2257c75.zip |
Merge pull request #10898 from nextcloud/feature/10684/default-logo-color-theme-colors
Switches the default logo color depending on the primary color
Diffstat (limited to 'apps/theming/lib/ImageManager.php')
-rw-r--r-- | apps/theming/lib/ImageManager.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/theming/lib/ImageManager.php b/apps/theming/lib/ImageManager.php index 8c144bfe6ae..d377aa4f222 100644 --- a/apps/theming/lib/ImageManager.php +++ b/apps/theming/lib/ImageManager.php @@ -83,7 +83,7 @@ class ImageManager { case 'logo': case 'logoheader': case 'favicon': - return $this->urlGenerator->imagePath('core', 'logo.png') . '?v=' . $cacheBusterCounter; + return $this->urlGenerator->imagePath('core', 'logo/logo.png') . '?v=' . $cacheBusterCounter; case 'background': return $this->urlGenerator->imagePath('core', 'background.png') . '?v=' . $cacheBusterCounter; } |