зеркало из https://github.com/mozilla/pjs.git
Bug 234811 --> ldap connections left open on send
This commit is contained in:
Родитель
aa034608e5
Коммит
914e1dd73c
|
@ -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)
|
||||
|
|
Загрузка…
Ссылка в новой задаче