diff options
author | Robin Appelman <robin@icewind.nl> | 2020-04-10 13:20:20 +0200 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2020-04-22 14:25:33 +0200 |
commit | 7f32fe6d506474943ca9be0ad23c84a6fe3c35b0 (patch) | |
tree | 2f158c8ba2ab726df67477b6e365a5d81ed3a586 | |
parent | 23e2baeb95c901bfb0e715c03a6a8d6f76cf6ae8 (diff) | |
download | nextcloud-server-7f32fe6d506474943ca9be0ad23c84a6fe3c35b0.tar.gz nextcloud-server-7f32fe6d506474943ca9be0ad23c84a6fe3c35b0.zip |
add tooltip to option
Signed-off-by: Robin Appelman <robin@icewind.nl>
-rw-r--r-- | apps/files_external/lib/Lib/Backend/SMB.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/files_external/lib/Lib/Backend/SMB.php b/apps/files_external/lib/Lib/Backend/SMB.php index 7cb692ad9a4..5344bf5f78c 100644 --- a/apps/files_external/lib/Lib/Backend/SMB.php +++ b/apps/files_external/lib/Lib/Backend/SMB.php @@ -58,7 +58,8 @@ class SMB extends Backend { ->setFlag(DefinitionParameter::FLAG_OPTIONAL), (new DefinitionParameter('check_acl', $l->t('Verify ACL access when listing files'))) ->setType(DefinitionParameter::VALUE_BOOLEAN) - ->setFlag(DefinitionParameter::FLAG_OPTIONAL), + ->setFlag(DefinitionParameter::FLAG_OPTIONAL) + ->setTooltip($l->t("Check the ACL's of each file or folder inside a directory to filter out items where the user has no read permissions, comes with a performance penalty")), (new DefinitionParameter('timeout', $l->t('Timeout'))) ->setType(DefinitionParameter::VALUE_HIDDEN) ->setFlag(DefinitionParameter::FLAG_OPTIONAL), |