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:43:43 +0100 |
commit | 0b11762b1c9bc24f16ac2238557e78e802e2c2b9 (patch) | |
tree | 0b09c18ce018e0aae82dfa53619c8b9f0841de7a /lib | |
parent | 127ab3cb471802deb9b9f9e771d29f53ec027644 (diff) | |
download | nextcloud-server-0b11762b1c9bc24f16ac2238557e78e802e2c2b9.tar.gz nextcloud-server-0b11762b1c9bc24f16ac2238557e78e802e2c2b9.zip |
use 'download.zip' as default name for zip downloads instead of 'owncloud.zip'
Diffstat (limited to 'lib')
-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); |