]> source.dussan.org Git - nextcloud-server.git/commitdiff
fixing Notice: Undefined index: isPublic
authorThomas Müller <thomas.mueller@tmit.eu>
Fri, 5 Jul 2013 09:30:53 +0000 (11:30 +0200)
committerThomas Müller <thomas.mueller@tmit.eu>
Fri, 5 Jul 2013 09:30:53 +0000 (11:30 +0200)
apps/files/index.php

index 640c28c007515de1bc43e1563ed139d97ed26e85..2338cf439e4c625ce2f4d655b832bf0a6fef4827 100644 (file)
@@ -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();
 }