diff options
author | Jörn Friedrich Dreyer <jfd@butonic.de> | 2014-01-21 12:41:10 +0100 |
---|---|---|
committer | Jörn Friedrich Dreyer <jfd@butonic.de> | 2014-01-21 12:41:10 +0100 |
commit | 267e1f3c40b9b9bdabaf0e49221744f80f7bc5a4 (patch) | |
tree | 19526e58c5cf17654652308f75655fc40c436256 /lib/private/files.php | |
parent | 0f794b6889d05508c86449dacdee3e05bd47d071 (diff) | |
download | nextcloud-server-267e1f3c40b9b9bdabaf0e49221744f80f7bc5a4.tar.gz nextcloud-server-267e1f3c40b9b9bdabaf0e49221744f80f7bc5a4.zip |
use 'download.zip' as default name for zip downloads instead of 'owncloud.zip'
Diffstat (limited to 'lib/private/files.php')
-rw-r--r-- | lib/private/files.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/files.php b/lib/private/files.php index e6c81d58bd2..8ce632013cf 100644 --- a/lib/private/files.php +++ b/lib/private/files.php @@ -83,7 +83,7 @@ class OC_Files { if ($basename) { $name = $basename . '.zip'; } else { - $name = 'owncloud.zip'; + $name = 'download.zip'; } set_time_limit($executionTime); |