Welcome to mirror list, hosted at ThFree Co, Russian Federation.

settings.php « files_sharing « apps - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b30c4f45cde49d05da2dc568a6fe15b1445c2f71 (plain)
1
2
3
4
5
6
7
8
9
<?php

OC_Util::checkAdminUser();
OC_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();

?>