From d3162a0d756de0c144ca178568b6c5479f9d36be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20B=C3=B6hmer?= Date: Thu, 3 Oct 2019 14:19:43 +0200 Subject: [PATCH] Added an help text for the URL/Ressource input field for attachments. --- src/Form/AttachmentFormType.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Form/AttachmentFormType.php b/src/Form/AttachmentFormType.php index 4eb0b0f8..9a1f541b 100644 --- a/src/Form/AttachmentFormType.php +++ b/src/Form/AttachmentFormType.php @@ -88,6 +88,7 @@ class AttachmentFormType extends AbstractType //Disable browser autocomplete 'autocomplete' => 'off' ], + 'help' => $this->trans->trans('attachment.edit.url.help'), 'constraints' => [ $options['allow_builtins'] ? new UrlOrBuiltin() : new Url() ]