diff options
author | Lukas Reschke <lukas@owncloud.com> | 2016-06-30 12:43:58 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2016-06-30 12:47:46 +0200 |
commit | 700a57d8b69dcabfef3e4e27911e2db2ea96b9c6 (patch) | |
tree | 709da1194f520c0a566bb0f709bbcdf97b0a507d /settings | |
parent | f7a69c765af490767fcd765f06086f7604fdbc43 (diff) | |
download | nextcloud-server-700a57d8b69dcabfef3e4e27911e2db2ea96b9c6.tar.gz nextcloud-server-700a57d8b69dcabfef3e4e27911e2db2ea96b9c6.zip |
Set content-type to "application/octet-stream"
Some browsers such as Firefox on Microsoft Windows otherwise do offer to open the file directly which is kinda silly.
Diffstat (limited to 'settings')
-rw-r--r-- | settings/Controller/LogSettingsController.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/settings/Controller/LogSettingsController.php b/settings/Controller/LogSettingsController.php index 4863c2369be..6c9fe76c247 100644 --- a/settings/Controller/LogSettingsController.php +++ b/settings/Controller/LogSettingsController.php @@ -105,7 +105,8 @@ class LogSettingsController extends Controller { */ public function download() { $resp = new StreamResponse(\OC\Log\Owncloud::getLogFilePath()); - $resp->addHeader('Content-Disposition', 'attachment; filename="owncloud.log"'); + $resp->addHeader('Content-Type', 'application/octet-stream'); + $resp->addHeader('Content-Disposition', 'attachment; filename="nextcloud.log"'); return $resp; } } |