diff options
author | Julius Härtl <jus@bitgrid.net> | 2018-01-05 08:15:42 +0100 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2018-01-05 09:43:09 +0100 |
commit | 24233162a0f9e294c29897b0357f0dabef54a99c (patch) | |
tree | d6770b145e790484085c3c4ac4e11c33dada7a90 /apps | |
parent | 1f8896d8c903d925949a23539818e8fb595cf79d (diff) | |
download | nextcloud-server-24233162a0f9e294c29897b0357f0dabef54a99c.tar.gz nextcloud-server-24233162a0f9e294c29897b0357f0dabef54a99c.zip |
Fix faulty path in theming scss generation
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps')
-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 b7777f1f907..5fd6edd8ab7 100644 --- a/apps/theming/lib/Controller/ThemingController.php +++ b/apps/theming/lib/Controller/ThemingController.php @@ -176,7 +176,7 @@ class ThemingController extends Controller { $this->themingDefaults->set($setting, $value); // 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'); return new DataResponse( [ |