summaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/settings.php
blob: da38b88d79e28f65420ad7881d7a6f1b6cf21e3c (plain)
1
2
3
4
5
6
7
8
9
<?php

OC_Util::checkAdminUser();
OCP\Util::addscript('files_sharing', 'settings');
$tmpl = new OC_Template('files_sharing', 'settings');
$tmpl->assign('allowResharing', OC_Appconfig::getValue('files_sharing', 'resharing', 'yes'));
return $tmpl->fetchPage();

?>