getJailedPath expects $path to have a trailing / - fixes #25464

pull/746/head
Thomas Müller 10 years ago committed by Robin Appelman
parent 84e6b8d9d0
commit d252d79059
  1. 1
      lib/private/Files/Cache/Wrapper/CacheJail.php

@ -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…
Cancel
Save