diff --git a/NEWS b/NEWS index 14f96b5f1..c29382b78 100644 --- a/NEWS +++ b/NEWS @@ -28,6 +28,7 @@ Bug fixes - fix double creation of folders in Outlook when the folder name starts with a digit (Zentyal) - avoid crashing Outlook after setting a custom view in a calendar folder (Zentyal) - handle emails having an attachment as their content + - fixed JavaScript syntax error in attendees editor 2.3.2 (2015-09-16) ------------------ diff --git a/UI/WebServerResources/UIxAttendeesEditor.js b/UI/WebServerResources/UIxAttendeesEditor.js index c33f45451..8bb7669c8 100644 --- a/UI/WebServerResources/UIxAttendeesEditor.js +++ b/UI/WebServerResources/UIxAttendeesEditor.js @@ -225,7 +225,8 @@ function performSearchCallback(http) { if (contact["c_domain"]) login += "@" + contact["c_domain"]; node.uid = (contact["isMSExchange"]? UserLogin + ":" : "") + login; - } else + } + else { node.uid = null; node.appendChild(new Element('div').addClassName('colorBox').addClassName('noFreeBusy')); }