mirror of
https://github.com/nextcloud/server.git
synced 2026-06-09 16:50:55 -04:00
Use the correct root to determinate the webroot for the resource
Since all the compiled routes are based on the server webroot, we have to use this, independent from which app this belongs to. Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
95c6a9124e
commit
117705c2df
1 changed files with 2 additions and 2 deletions
|
|
@ -109,7 +109,7 @@ class CSSResourceLocator extends ResourceLocator {
|
|||
if($this->scssCacher !== null) {
|
||||
if($this->scssCacher->process($root, $file, $app)) {
|
||||
|
||||
$this->append($root, $this->scssCacher->getCachedSCSS($app, $file), \OC::$WEBROOT, true, true);
|
||||
$this->append($this->serverroot, $this->scssCacher->getCachedSCSS($app, $file), \OC::$WEBROOT, true, true);
|
||||
return true;
|
||||
} else {
|
||||
$this->logger->warning('Failed to compile and/or save '.$root.'/'.$file, ['app' => 'core']);
|
||||
|
|
@ -145,7 +145,7 @@ class CSSResourceLocator extends ResourceLocator {
|
|||
}
|
||||
}
|
||||
|
||||
$this->resources[] = array($webRoot? : \OC::$WEBROOT, $webRoot, $file);
|
||||
$this->resources[] = array($webRoot ?: \OC::$WEBROOT, $webRoot, $file);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue