mirror of
https://github.com/nextcloud/server.git
synced 2026-06-08 00:02:54 -04:00
Merge pull request #44413 from nextcloud/backport/44408/stable28
[stable28] fix(JSRecourceLocator): Add missing slash after server root
This commit is contained in:
commit
6044442ecf
1 changed files with 1 additions and 1 deletions
|
|
@ -52,7 +52,7 @@ class JSResourceLocator extends ResourceLocator {
|
|||
$app = substr($script, 0, strpos($script, '/'));
|
||||
$scriptName = basename($script);
|
||||
// Get the app root path
|
||||
$appRoot = $this->serverroot . 'apps/';
|
||||
$appRoot = $this->serverroot . '/apps/';
|
||||
$appWebRoot = null;
|
||||
try {
|
||||
// We need the dir name as getAppPath appends the appid
|
||||
|
|
|
|||
Loading…
Reference in a new issue