Skip to content

Commit

Permalink
getJailedPath expects $path to have a trailing / - fixes #25464
Browse files Browse the repository at this point in the history
  • Loading branch information
DeepDiver1975 committed Aug 5, 2016
1 parent d0580f6 commit a469b2c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/private/Files/Cache/Wrapper/CacheJail.php
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,7 @@ public function getIncomplete() {
*/
public function getPathById($id) {
$path = $this->cache->getPathById($id);
$path = $this->getSourcePath($path);
return $this->getJailedPath($path);
}

Expand Down

0 comments on commit a469b2c

Please sign in to comment.