Skip to content
Snippets Groups Projects
Commit f08f25fa authored by andi's avatar andi
Browse files

make application/* downloadable #301

darcs-hash:20050504194742-9977f-eb351d06513a29fa70279ce0029dadd5f03f3818.gz
parent 0b7c14c2
No related branches found
No related tags found
No related merge requests found
......@@ -74,6 +74,10 @@
header('Last-Modified: '.date('r',filemtime($FILE)));
header('Content-Length: '.filesize($FILE));
//application mime type is downloadable
if(substr($MIME,0,11) == 'application'){
header('Content-Disposition: attachment; filename="'.basename($FILE).'"');
}
$fp = @fopen($FILE,"rb");
if($fp){
......
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