Bug 234811 --> ldap connections left open on send

This commit is contained in:
scott%scott-macgregor.org 2004-02-18 21:59:54 +00:00
Родитель aa034608e5
Коммит 914e1dd73c
1 изменённых файлов: 11 добавлений и 0 удалений

Просмотреть файл

@ -181,6 +181,7 @@ function enableEditableFields()
var gComposeRecyclingListener = {
onClose: function() {
//Reset recipients and attachments
ReleaseAutoCompleteState();
awResetAllRows();
RemoveAllAttachments();
@ -2182,6 +2183,16 @@ function SetContentAndBodyAsUnmodified()
gContentChanged = false;
}
function ReleaseAutoCompleteState()
{
for (i=1; i <= awGetMaxRecipients(); i++)
document.getElementById("addressCol2#" + i).removeSession(gLDAPSession);
gSessionAdded = false;
gLDAPSession = null;
gAutocompleteSession = null;
}
function MsgComposeCloseWindow(recycleIt)
{
if (gMsgCompose)