mirror of
https://github.com/nextcloud/server.git
synced 2026-04-21 14:23:17 -04:00
remove trailing slash in %appswebroot% placeholder
This commit is contained in:
parent
2c1c1ba88c
commit
d450560b39
1 changed files with 1 additions and 1 deletions
|
|
@ -17,7 +17,7 @@ class OC_Minimizer_CSS extends OC_Minimizer
|
|||
$in_root = false;
|
||||
foreach(OC::$APPSROOTS as $app_root) {
|
||||
if(strpos($file, $app_root['path']) === 0) {
|
||||
$in_root = $webroot.$app_root['url'];
|
||||
$in_root = rtrim($webroot.$app_root['url'], '/');
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue