diff options
author | Julius Härtl <jus@bitgrid.net> | 2018-07-18 19:06:06 +0200 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2018-07-19 08:17:00 +0200 |
commit | bfc6fc8e500e02b061613c831643da2300b7fa20 (patch) | |
tree | 262786a9c3dc0130cf24b81caf4de2ae11df0924 /core | |
parent | 9159ed3d76750956754945c934f2d4d2a6b11e70 (diff) | |
download | nextcloud-server-bfc6fc8e500e02b061613c831643da2300b7fa20.tar.gz nextcloud-server-bfc6fc8e500e02b061613c831643da2300b7fa20.zip |
Fix settings icon fetching
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'core')
-rw-r--r-- | core/Controller/SvgController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Controller/SvgController.php b/core/Controller/SvgController.php index 3dedccc6377..03857e07c76 100644 --- a/core/Controller/SvgController.php +++ b/core/Controller/SvgController.php @@ -80,7 +80,7 @@ class SvgController extends Controller { if ($app === 'settings') { $path = $this->serverRoot . "/settings/img/$fileName.svg"; - return $this->getSvg($path, $color); + return $this->getSvg($path, $color, $fileName); } $appPath = \OC_App::getAppWebPath($app); |