summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2013-07-05 11:30:53 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2013-07-05 11:30:53 +0200
commit0202d47f7ad4a65d4e539421c4f5899404b22bf4 (patch)
tree374eac36e4f379ef3557a382c569e504e5d839d5 /apps
parent11172db55b5d180a9c16adb75360050985b9fe60 (diff)
downloadnextcloud-server-0202d47f7ad4a65d4e539421c4f5899404b22bf4.tar.gz
nextcloud-server-0202d47f7ad4a65d4e539421c4f5899404b22bf4.zip
fixing Notice: Undefined index: isPublic
Diffstat (limited to 'apps')
-rw-r--r--apps/files/index.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/files/index.php b/apps/files/index.php
index 640c28c0075..2338cf439e4 100644
--- a/apps/files/index.php
+++ b/apps/files/index.php
@@ -137,5 +137,6 @@ if ($needUpgrade) {
$tmpl->assign('uploadMaxHumanFilesize', OCP\Util::humanFileSize($maxUploadFilesize));
$tmpl->assign('allowZipDownload', intval(OCP\Config::getSystemValue('allowZipDownload', true)));
$tmpl->assign('usedSpacePercent', (int)$storageInfo['relative']);
+ $tmpl->assign('isPublic', false);
$tmpl->printPage();
}