From 7c69e37449b72bbf55f3c5d1017c75e36dfc590e Mon Sep 17 00:00:00 2001 From: Francis Lachapelle Date: Fri, 6 Nov 2015 08:45:42 -0500 Subject: [PATCH] (fix) JavaScript syntax error in attendees editor --- NEWS | 1 + UI/WebServerResources/UIxAttendeesEditor.js | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) 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')); }