Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
getJailedPath expects $path to have a trailing / - fixes #25464
  • Loading branch information
DeepDiver1975 authored and schiessle committed Aug 10, 2016
commit 0253300e2ab965eb65923b7e39d8b1f188175398
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 @@ -290,6 +290,7 @@ public function getIncomplete() {
*/
public function getPathById($id) {
$path = $this->cache->getPathById($id);
$path = $this->getSourcePath($path);
return $this->getJailedPath($path);
}

Expand Down