Zeile 6 | Zeile 6 |
---|
* Website: http://www.mybboard.net * License: http://www.mybboard.net/about/license *
|
* Website: http://www.mybboard.net * License: http://www.mybboard.net/about/license *
|
* $Id: attachment.php 4143 2008-08-22 02:47:25Z Tikitiki $
| * $Id: attachment.php 4388 2009-06-26 03:46:33Z RyanGordon $
|
*/
define("IN_MYBB", 1);
| */
define("IN_MYBB", 1);
|
Zeile 113 | Zeile 113 |
---|
{ $ext = get_extension($attachment['filename']);
|
{ $ext = get_extension($attachment['filename']);
|
if(strpos(strtolower($_SERVER['HTTP_USER_AGENT']), "msie") !== false && strpos($attachment['filetype'], "image") === false)
| switch($attachment['filetype']) { case "application/pdf": case "image/bmp": case "image/gif": case "image/jpeg": case "image/pjpeg": case "image/png": case "text/plain": header("Content-type: {$attachment['filetype']}"); $disposition = "inline"; break;
default: header("Content-type: application/force-download"); $disposition = "attachment"; }
if(strpos(strtolower($_SERVER['HTTP_USER_AGENT']), "msie") !== false)
|
{ header("Content-disposition: attachment; filename=\"{$attachment['filename']}\"");
|
{ header("Content-disposition: attachment; filename=\"{$attachment['filename']}\"");
|
}
| }
|
else {
|
else {
|
header("Content-disposition: inline; filename=\"{$attachment['filename']}\"");
| header("Content-disposition: {$disposition}; filename=\"{$attachment['filename']}\""); } if(strpos(strtolower($_SERVER['HTTP_USER_AGENT']), "msie 6.0") !== false) { header("Expires: -1");
|
}
|
}
|
header("Content-type: {$attachment['filetype']}");
| |
header("Content-length: {$attachment['filesize']}"); header("Content-range: bytes=0-".($attachment['filesize']-1)."/".$attachment['filesize']); echo file_get_contents($mybb->settings['uploadspath']."/".$attachment['attachname']);
| header("Content-length: {$attachment['filesize']}"); header("Content-range: bytes=0-".($attachment['filesize']-1)."/".$attachment['filesize']); echo file_get_contents($mybb->settings['uploadspath']."/".$attachment['attachname']);
|