Skip to content
Snippets Groups Projects
Commit d4fa1dda authored by Robin Appelman's avatar Robin Appelman
Browse files

fix viewing images that have a ' in the filename

parent 2aa50dc5
No related branches found
No related tags found
No related merge requests found
......@@ -30,6 +30,7 @@ if(strstr($file,'..') or strstr($dir,'..')){
die();
}
$filename=$dir.'/'.$file;
$filename=stripslashes($filename);
$ftype=OC_FILESYSTEM::getMimeType($filename);
ob_end_clean();
header('Content-Type: '.$ftype);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment