-
-
Notifications
You must be signed in to change notification settings - Fork 188
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[AllBundles] Update default form types #1353
Conversation
dannyvw
commented
Oct 22, 2016
Q | A |
---|---|
Bug fix? | yes |
New feature? | no |
BC breaks? | no |
Deprecations? | no |
Fixed tickets |
'label' => 'kuma_form.form.page_admin.subject.label', | ||
)); | ||
$builder->add('from_email', null, array( | ||
$builder->add('from_email', TextType::class, array( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
EmailType?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changed to EmailType
'label' => 'kuma_form.form.page_admin.from_email.label', | ||
)); | ||
$builder->add('to_email', null, array( | ||
$builder->add('to_email', EmailType::class, array( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be texttype? Currently it is possible to pass a comma delimited string of emails
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed
4d0b2b2
to
b6af588
Compare
b6af588
to
112ff1a
Compare
* master: [AllBundles] Update default form types (#1353) Fix phpunit tests for translator bundle Add php 7.1 to travis remove .sublime-project file Fix audio display if media type isn't soundcloud Check if page implements HasPageTemplateInteface methods Inject only needed service instead of full container Add form isSubmitted before isValid
* Fix form types * Change to email type
* Fix form types * Change to email type
* 4.0: (51 commits) [NodeSearchBundle]: check if we have html [NodeSearchBundle] shards and replicas configurable Upgrade to latest LiipImagine bundle [Docs]: add anacrontab documentation and fix numbering of docs [AllBundles]: add crowdin as translator [AdminListBundle] Fixed doctrine Index for LockableEntity (Kunstmaan#1654) Gitattributes (Kunstmaan#1557) [AdminListBundle] Incorrect logic checking if version lock is active [KunstmaanAdminListBundle]: fix abstract page admin list Crawler for removing style and script tags Fix docblock so child entities fluent setters wont break revert fix Kunstmaan#1562 with new solution [AllBundles] Update default form types (Kunstmaan#1353) Fix phpunit tests for translator bundle Add php 7.1 to travis remove .sublime-project file Check if page implements HasPageTemplateInteface methods [KunstmaanAdminListBundle]: add new event subscriber [KunstmaanAdminListBundle]: always get latest overviewpage [KunstmaanPagePartBundle]: check if add pagepart button is the first one ...