backport of Nathans r48904: trim email addresses to avoid validation errors

This commit is contained in:
Ralf Becker 2014-10-07 06:40:22 +00:00
parent c779625947
commit d65b786b26

View File

@ -495,6 +495,15 @@ var et2_taglist_email = et2_taglist.extend(
selectionRenderer: function(item)
{
// Trim
if(typeof item.id == 'string')
{
item.id = item.id.trim();
}
if(typeof item.label == 'string')
{
item.label = item.label.trim();
}
// We check free entries for valid email, and render as invalid if it's not.
var valid = item.id != item.label || et2_url.prototype.EMAIL_PREG.test(item.id || '');