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
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2012-11-05 00:12:18 +0400
committerRobin Appelman <icewind@owncloud.com>2012-11-05 00:12:18 +0400
commit4b940955ddb3266f625eae83da412a655efef319 (patch)
tree8ed6bb2fae2f5fa3cb61c630e3dc98af5e99d656 /apps/files/download.php
parent8a6bb7965d96b1c4297da8f5dbc9644fec7aeb0f (diff)
parent555dd5c261e52cf64f5a8eb6f4d03635cedafbbe (diff)
merge master into filesystem
Diffstat (limited to 'apps/files/download.php')
-rw-r--r--apps/files/download.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/download.php b/apps/files/download.php
index b00a50a0452..8b9aac5fd6e 100644
--- a/apps/files/download.php
+++ b/apps/files/download.php
@@ -32,7 +32,7 @@ $filename = $_GET["file"];
if(!\OC\Files\Filesystem::file_exists($filename)) {
header("HTTP/1.0 404 Not Found");
$tmpl = new OCP\Template( '', '404', 'guest' );
- $tmpl->assign('file',$filename);
+ $tmpl->assign('file', $filename);
$tmpl->printPage();
exit;
}