summaryrefslogtreecommitdiffstats
path: root/apps/files/index.php
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2013-10-21 11:29:40 +0200
committerVincent Petry <pvince81@owncloud.com>2013-10-21 11:29:40 +0200
commitf8717bc26005912f14fb0da52b7dd66f86f3b929 (patch)
tree60180a1d55f28eb05f76a65eb8e8f96083a12a1c /apps/files/index.php
parentf5a6d6b43e6a91d0e9ef0940e1a83530f5a5cff6 (diff)
downloadnextcloud-server-f8717bc26005912f14fb0da52b7dd66f86f3b929.tar.gz
nextcloud-server-f8717bc26005912f14fb0da52b7dd66f86f3b929.zip
Fixed share with link checkbox missing as regular user
Instead of loading the app config setting "shareapi_allow_links" using a synchronous ajax call that fails when the user is not an admin, this fix puts the flag directly in the template so it doesn't need to be loaded afterwards. Fixes #5440
Diffstat (limited to 'apps/files/index.php')
-rw-r--r--apps/files/index.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/files/index.php b/apps/files/index.php
index 8d877be8ac9..2f1e084560b 100644
--- a/apps/files/index.php
+++ b/apps/files/index.php
@@ -138,6 +138,7 @@ if ($needUpgrade) {
$tmpl->assign('publicUploadEnabled', $publicUploadEnabled);
$tmpl->assign("encryptedFiles", \OCP\Util::encryptedFiles());
$tmpl->assign("mailNotificationEnabled", \OC_Appconfig::getValue('core', 'shareapi_allow_mail_notification', 'yes'));
+ $tmpl->assign("allowShareWithLink", \OC_Appconfig::getValue('core', 'shareapi_allow_links', 'yes'));
$tmpl->assign("encryptionInitStatus", $encryptionInitStatus);
$tmpl->assign('disableSharing', false);
$tmpl->assign('ajaxLoad', $ajaxLoad);