Added an help text for the URL/Ressource input field for attachments.

This commit is contained in:
Jan Böhmer 2019-10-03 14:19:43 +02:00
parent 0fc987f017
commit d3162a0d75

View file

@ -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()
]