getJailedPath expects $path to have a trailing / - fixes #25464
This commit is contained in:
parent
84e6b8d9d0
commit
d252d79059
|
@ -290,6 +290,7 @@ class CacheJail extends CacheWrapper {
|
|||
*/
|
||||
public function getPathById($id) {
|
||||
$path = $this->cache->getPathById($id);
|
||||
$path = $this->getSourcePath($path);
|
||||
return $this->getJailedPath($path);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue