Merge branch 'master' into encryption_check_if_file_is_encrypted

This commit is contained in:
Bjoern Schiessle 2013-11-20 14:45:04 +01:00
commit b4e7258a04
1 changed files with 5 additions and 3 deletions

View File

@ -131,11 +131,13 @@ class OC_Files {
if ($filesize > -1) {
header("Content-Length: ".$filesize);
}
list($storage) = \OC\Files\Filesystem::resolvePath($filename);
if ($xsendfile) {
list($storage) = \OC\Files\Filesystem::resolvePath(\OC\Files\Filesystem::getView()->getAbsolutePath($filename));
if ($storage instanceof \OC\Files\Storage\Local) {
self::addSendfileHeader(\OC\Files\Filesystem::getLocalFile($filename));
}
}
}
} elseif ($zip or !\OC\Files\Filesystem::file_exists($filename)) {
header("HTTP/1.0 404 Not Found");
$tmpl = new OC_Template('', '404', 'guest');