Merge pull request #22579 from nextcloud/backport/22550/stable19
[stable19] Use the correct root to determinate the webroot for the resource
This commit is contained in:
commit
c1b971ec63
|
@ -109,7 +109,7 @@ class CSSResourceLocator extends ResourceLocator {
|
|||
if (is_file($root.'/'.$file)) {
|
||||
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[] = [$webRoot? : \OC::$WEBROOT, $webRoot, $file];
|
||||
$this->resources[] = [$webRoot ?: \OC::$WEBROOT, $webRoot, $file];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue