mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-27 09:09:04 +01:00
filter @ from n_fn when trying to add the email via addressbook.email dialog
This commit is contained in:
parent
8a293796e1
commit
7ffdb2f0f4
@ -401,6 +401,11 @@ class addressbook_ui extends addressbook_bo
|
|||||||
function addEmail(email)
|
function addEmail(email)
|
||||||
{
|
{
|
||||||
var to = 'to';
|
var to = 'to';
|
||||||
|
splitter = email.indexOf(' <');
|
||||||
|
namepart = email.substring(0,splitter);
|
||||||
|
emailpart = email.substring(splitter);
|
||||||
|
email = namepart.replace(/@/g,' ')+emailpart;
|
||||||
|
|
||||||
if (document.getElementById('exec[nm][to][cc]').checked == true)
|
if (document.getElementById('exec[nm][to][cc]').checked == true)
|
||||||
{
|
{
|
||||||
to = 'cc';
|
to = 'cc';
|
||||||
|
Loading…
Reference in New Issue
Block a user