mirror of
https://github.com/nextcloud/server.git
synced 2026-04-22 06:37:56 -04:00
9 lines
261 B
PHP
9 lines
261 B
PHP
|
|
<?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();
|
||
|
|
|
||
|
|
?>
|