mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:20 +01:00
Trim email addresses to avoid validation errors
This commit is contained in:
parent
aeefd2823a
commit
fe4cdcb1d1
@ -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 || '');
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user