(fix) JavaScript syntax error in attendees editor

This commit is contained in:
Francis Lachapelle
2015-11-06 08:45:42 -05:00
parent 7f26d47cd1
commit 7c69e37449
2 changed files with 3 additions and 1 deletions

1
NEWS
View File

@@ -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)
------------------

View File

@@ -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'));
}