diff options
Diffstat (limited to 'apps/files/index.php')
-rw-r--r-- | apps/files/index.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/files/index.php b/apps/files/index.php index c7a45e54854..ee12df5f075 100644 --- a/apps/files/index.php +++ b/apps/files/index.php @@ -138,6 +138,8 @@ OCP\Util::addscript('files', 'navigation'); OCP\Util::addscript('files', 'keyboardshortcuts'); $tmpl = new OCP\Template('files', 'index', 'user'); $tmpl->assign('usedSpacePercent', (int)$storageInfo['relative']); +$tmpl->assign('owner', $storageInfo['owner']); +$tmpl->assign('ownerDisplayName', $storageInfo['ownerDisplayName']); $tmpl->assign('isPublic', false); $tmpl->assign("mailNotificationEnabled", $config->getAppValue('core', 'shareapi_allow_mail_notification', 'no')); $tmpl->assign("mailPublicNotificationEnabled", $config->getAppValue('core', 'shareapi_allow_public_notification', 'no')); |