diff options
author | Julius Härtl <jus@bitgrid.net> | 2018-01-09 14:18:03 +0100 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2018-01-09 14:18:03 +0100 |
commit | 3379290a7305674ea601b4577a22c6bc2afab187 (patch) | |
tree | 1fb6cd1394d97f750e662b437f841f3402530ce8 /apps/theming | |
parent | 9386b07ed8c469189779949debb4483e713e3836 (diff) | |
download | nextcloud-server-3379290a7305674ea601b4577a22c6bc2afab187.tar.gz nextcloud-server-3379290a7305674ea601b4577a22c6bc2afab187.zip |
Fix SCSS processing when undoing theming values
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps/theming')
-rw-r--r-- | apps/theming/lib/Controller/ThemingController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/theming/lib/Controller/ThemingController.php b/apps/theming/lib/Controller/ThemingController.php index 5fd6edd8ab7..6592eb7f7ab 100644 --- a/apps/theming/lib/Controller/ThemingController.php +++ b/apps/theming/lib/Controller/ThemingController.php @@ -324,7 +324,7 @@ class ThemingController extends Controller { public function undo($setting) { $value = $this->themingDefaults->undo($setting); // reprocess server scss for preview - $cssCached = $this->scssCacher->process(\OC::$SERVERROOT, '/core/css/server.scss', 'core'); + $cssCached = $this->scssCacher->process(\OC::$SERVERROOT, 'core/css/server.scss', 'core'); if($setting === 'logoMime') { try { |