diff options
author | Frank Karlitschek <frank@owncloud.org> | 2012-05-02 14:11:29 +0200 |
---|---|---|
committer | Frank Karlitschek <frank@owncloud.org> | 2012-05-02 14:11:29 +0200 |
commit | ff66600bc060dd2713b88b4af88e5a0a291710e0 (patch) | |
tree | c1b796ddf938025ac1cc31d0f8414c55a31840aa /apps/files_sharing/settings.php | |
parent | 8e99475886fa3fc23dd576cce7eaefd532c3fe5c (diff) | |
download | nextcloud-server-ff66600bc060dd2713b88b4af88e5a0a291710e0.tar.gz nextcloud-server-ff66600bc060dd2713b88b4af88e5a0a291710e0.zip |
port appconfig
Diffstat (limited to 'apps/files_sharing/settings.php')
-rwxr-xr-x | apps/files_sharing/settings.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/settings.php b/apps/files_sharing/settings.php index 26c8df682bb..a7bdf7b9195 100755 --- a/apps/files_sharing/settings.php +++ b/apps/files_sharing/settings.php @@ -3,7 +3,7 @@ OCP\User::checkAdminUser(); OCP\Util::addscript('files_sharing', 'settings'); $tmpl = new OC_Template('files_sharing', 'settings'); -$tmpl->assign('allowResharing', OC_Appconfig::getValue('files_sharing', 'resharing', 'yes')); +$tmpl->assign('allowResharing', OCP\Config::getAppValue('files_sharing', 'resharing', 'yes')); return $tmpl->fetchPage(); ?>
\ No newline at end of file |