Summary | Multiple email fields are not working in Firefox |
Queue | Turba |
Queue Version | Git develop |
Type | Bug |
State | Resolved |
Priority | 1. Low |
Owners | jan (at) horde (dot) org |
Requester | thomas.jarosch (at) intra2net (dot) com |
Created | 07/20/2012 (4774 days ago) |
Due | |
Updated | 08/29/2012 (4734 days ago) |
Assigned | |
Resolved | 08/07/2012 (4756 days ago) |
Github Issue Link | |
Github Pull Request | |
Milestone | |
Patch | No |
commit b28ae3733f80da358d7ae2365c1817de246253ab
Author: Jan Schneider <jan@horde.org>
Date: Tue Aug 7 18:53:16 2012 +0200
Set HTML 5 "multiple" attribute on email fields if necessary (
Bug #11304)..../Core/lib/Horde/Core/Ui/VarRenderer/Html.php | 3 ++-
framework/Core/package.xml | 6 +++---
framework/Form/lib/Horde/Form/Type.php | 5 +++++
framework/Form/package.xml | 4 ++--
4 files changed, 12 insertions(+), 6 deletions(-)
http://git.horde.org/horde-git/-/commit/b28ae3733f80da358d7ae2365c1817de246253ab
State ⇒ Resolved
commit b28ae3733f80da358d7ae2365c1817de246253ab
Author: Jan Schneider <jan@horde.org>
Date: Tue Aug 7 18:53:16 2012 +0200
Set HTML 5 "multiple" attribute on email fields if necessary (
Bug #11304)..../Core/lib/Horde/Core/Ui/VarRenderer/Html.php | 3 ++-
framework/Core/package.xml | 6 +++---
framework/Form/lib/Horde/Form/Type.php | 5 +++++
framework/Form/package.xml | 4 ++--
4 files changed, 12 insertions(+), 6 deletions(-)
http://git.horde.org/horde-git/-/commit/b28ae3733f80da358d7ae2365c1817de246253ab
Priority ⇒ 1. Low
Patch ⇒ No
Milestone ⇒
Queue ⇒ Turba
Summary ⇒ Multiple email fields are not working in Firefox
Type ⇒ Bug
State ⇒ Unconfirmed
The "emails" field is now a "input type=email" HTML5 field.
Firefox does email address validation and denies multiple, comma separated
email addresses like
"email1@domain.com,email2@domain.com".
It will block this entry with "Please enter an email address".
Reading the spec for the "email" HTML5 form element, there seems to be
a "multiple" attribute.
We could try this one or revert back to a normal text input field.
Cheers,
Thomas