summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2013-02-28 20:21:14 +0100
committerLukas Reschke <lukas@statuscode.ch>2013-02-28 20:21:14 +0100
commit301d065686b7cb4b49d7662e2edec9ed5fe4115b (patch)
treedd98fa48338e45feb15b659614056e1da403740b
parentdee16deacd8a66c423d8b51ccfc23730823e4019 (diff)
downloadnextcloud-server-301d065686b7cb4b49d7662e2edec9ed5fe4115b.tar.gz
nextcloud-server-301d065686b7cb4b49d7662e2edec9ed5fe4115b.zip
Sed was wrong
-rw-r--r--apps/files/index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/index.php b/apps/files/index.php
index 579e19cf115..20fbf7f93be 100644
--- a/apps/files/index.php
+++ b/apps/files/index.php
@@ -93,7 +93,7 @@ $list = new OCP\Template('files', 'part.list', '');
$list->assign('files', $files);
$list->assign('baseURL', OCP\Util::linkTo('files', 'index.php') . '?dir=');
$list->assign('downloadURL', OCP\Util::linkToRoute('download', array('file' => '/')));
-$list->assign('disableSharing');
+$list->assign('disableSharing', false);
$breadcrumbNav = new OCP\Template('files', 'part.breadcrumb', '');
$breadcrumbNav->assign('breadcrumb', $breadcrumb);
$breadcrumbNav->assign('baseURL', OCP\Util::linkTo('files', 'index.php') . '?dir=');