Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJörn Friedrich Dreyer <jfd@butonic.de>2014-01-21 15:41:10 +0400
committerJörn Friedrich Dreyer <jfd@butonic.de>2014-01-21 15:43:43 +0400
commit0b11762b1c9bc24f16ac2238557e78e802e2c2b9 (patch)
tree0b09c18ce018e0aae82dfa53619c8b9f0841de7a /lib
parent127ab3cb471802deb9b9f9e771d29f53ec027644 (diff)
use 'download.zip' as default name for zip downloads instead of 'owncloud.zip'
Diffstat (limited to 'lib')
-rw-r--r--lib/private/files.php2
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);