aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2018-01-09 17:40:34 +0100
committerGitHub <noreply@github.com>2018-01-09 17:40:34 +0100
commit8c9e584c6b5e4f064d327ed53a3f4ce06261625b (patch)
tree1fb6cd1394d97f750e662b437f841f3402530ce8
parent9386b07ed8c469189779949debb4483e713e3836 (diff)
parent3379290a7305674ea601b4577a22c6bc2afab187 (diff)
downloadnextcloud-server-8c9e584c6b5e4f064d327ed53a3f4ce06261625b.tar.gz
nextcloud-server-8c9e584c6b5e4f064d327ed53a3f4ce06261625b.zip
Merge pull request #7756 from nextcloud/fix-theming-rebase-url
Fix SCSS processing when undoing theming values
-rw-r--r--apps/theming/lib/Controller/ThemingController.php2
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 {