-
-
Notifications
You must be signed in to change notification settings - Fork 4.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use the correct root to determinate the webroot for the resource #22550
Use the correct root to determinate the webroot for the resource #22550
Conversation
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 <[email protected]>
@@ -109,7 +109,7 @@ protected function cacheAndAppendScssIfExist($root, $file, $app = 'core') { | |||
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); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Before this tried to load /home/nickv/Nextcloud/20/appsbabies/spreed
index.php/css/spreed/2359-7462-unified-search.css?v=d0784d96eefd0edc6bea0c967d17b4ea
which is wrong, because the index.php is located in the serverroot, not the apps webroot. It worked for most of us because it fell back to ''
logged an error and loaded the file anyway. It only broke visually when nextcloud had a non-empty webroot, e.g. (https://example.tld/nextcloud
)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍 🐘
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
makes sense. But didn't test.
🐘
/backport to stable19 |
/backport to stable18 |
The backport to stable18 failed. Please do this backport manually. |
18 backport in #22585 |
Since all the compiled routes are based on the server webroot,
we have to use this, independent from which app this belongs to.
Fix #13556