Show nice error page for not available versions
* fixes #1464 Signed-off-by: Morris Jobke <hey@morrisjobke.de>
This commit is contained in:
parent
efa9ac1230
commit
f03cd2c685
|
@ -31,7 +31,15 @@ OCP\JSON::checkLoggedIn();
|
|||
$file = $_GET['file'];
|
||||
$revision=(int)$_GET['revision'];
|
||||
|
||||
try {
|
||||
list($uid, $filename) = OCA\Files_Versions\Storage::getUidAndFilename($file);
|
||||
} catch(\OCP\Files\NotFoundException $e) {
|
||||
header("HTTP/1.1 404 Not Found");
|
||||
$tmpl = new OCP\Template('', '404', 'guest');
|
||||
$tmpl->assign('file', '');
|
||||
$tmpl->printPage();
|
||||
exit();
|
||||
}
|
||||
|
||||
$versionName = '/'.$uid.'/files_versions/'.$filename.'.v'.$revision;
|
||||
|
||||
|
|
Loading…
Reference in New Issue