diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2013-07-05 11:30:53 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2013-07-05 11:30:53 +0200 |
commit | 0202d47f7ad4a65d4e539421c4f5899404b22bf4 (patch) | |
tree | 374eac36e4f379ef3557a382c569e504e5d839d5 /apps | |
parent | 11172db55b5d180a9c16adb75360050985b9fe60 (diff) | |
download | nextcloud-server-0202d47f7ad4a65d4e539421c4f5899404b22bf4.tar.gz nextcloud-server-0202d47f7ad4a65d4e539421c4f5899404b22bf4.zip |
fixing Notice: Undefined index: isPublic
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files/index.php | 1 |
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(); } |