diff options
| author | Marc Alexander <admin@m-a-styles.de> | 2016-09-09 23:39:23 +0200 |
|---|---|---|
| committer | Marc Alexander <admin@m-a-styles.de> | 2016-09-09 23:39:23 +0200 |
| commit | 14cc4f3ae2b6a5b1000f956599537dd88a0c937d (patch) | |
| tree | 618957e7efba5492fdd6527aef17533891c69ef9 | |
| parent | 0aa289e4d967e6155733749307ddaefb4036dfed (diff) | |
| parent | dccb5564d2ed2e3e2247bd481c4ba70a6d1317a4 (diff) | |
| download | forums-14cc4f3ae2b6a5b1000f956599537dd88a0c937d.tar forums-14cc4f3ae2b6a5b1000f956599537dd88a0c937d.tar.gz forums-14cc4f3ae2b6a5b1000f956599537dd88a0c937d.tar.bz2 forums-14cc4f3ae2b6a5b1000f956599537dd88a0c937d.tar.xz forums-14cc4f3ae2b6a5b1000f956599537dd88a0c937d.zip | |
Merge branch '3.1.x' into 3.2.x
| -rw-r--r-- | phpBB/includes/functions_download.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_download.php b/phpBB/includes/functions_download.php index 1659d4b252..8f6526dd71 100644 --- a/phpBB/includes/functions_download.php +++ b/phpBB/includes/functions_download.php @@ -284,7 +284,7 @@ function header_filename($file) // There be dragons here. // Not many follows the RFC... - if (strpos($user_agent, 'MSIE') !== false || strpos($user_agent, 'Safari') !== false || strpos($user_agent, 'Konqueror') !== false) + if (strpos($user_agent, 'MSIE') !== false || strpos($user_agent, 'Konqueror') !== false) { return "filename=" . rawurlencode($file); } |
