diff options
author | Michael Weimann <mail@michael-weimann.eu> | 2018-10-04 20:43:27 +0200 |
---|---|---|
committer | Michael Weimann <mail@michael-weimann.eu> | 2018-10-04 20:43:27 +0200 |
commit | 044ab0cbecf46d537e892dfa4efd862182798291 (patch) | |
tree | b4986e1a1311dbf54dc0cf9efe53e85d0b002fac /apps/theming/lib | |
parent | 065e0c0e491d819658b5e7128fff967244db6681 (diff) | |
download | nextcloud-server-044ab0cbecf46d537e892dfa4efd862182798291.tar.gz nextcloud-server-044ab0cbecf46d537e892dfa4efd862182798291.zip |
Adapts the theming util to the new core logo image path
Signed-off-by: Michael Weimann <mail@michael-weimann.eu>
Diffstat (limited to 'apps/theming/lib')
-rw-r--r-- | apps/theming/lib/Util.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/theming/lib/Util.php b/apps/theming/lib/Util.php index b17382334d0..38b876f3610 100644 --- a/apps/theming/lib/Util.php +++ b/apps/theming/lib/Util.php @@ -161,7 +161,7 @@ class Util { } } catch (NotFoundException $e) {} } - return \OC::$SERVERROOT . '/core/img/logo.svg'; + return \OC::$SERVERROOT . '/core/img/logo/logo.svg'; } /** @@ -223,7 +223,7 @@ class Util { /** * Check if a custom theme is set in the server configuration - * + * * @return bool */ public function isAlreadyThemed() { |