mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-03-02 05:36:23 +00:00
Monotone-Parent: 5230458dba570c663e9087a99852e38cfb26de0f
Monotone-Revision: 1b073e285785f32b4c27e867a0e0d363fdc74264 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2010-11-01T19:28:38 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -1,5 +1,8 @@
|
||||
2010-11-01 Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
|
||||
* UI/WebServerResources/generic.js (triggerAjaxRequest): invoke
|
||||
the request callback only when set on the http object.
|
||||
|
||||
* SoObjects/Mailer/SOGoMailBaseObject.m (-_createIMAP4Connection):
|
||||
we need to initialize newConnection to nil when the return
|
||||
password is nil.
|
||||
|
||||
@@ -287,7 +287,7 @@ function onAjaxRequestStateChange(http) {
|
||||
createCASRecoveryIFrame(http);
|
||||
}
|
||||
else if (activeAjaxRequests > 0) {
|
||||
if (!http.aborted)
|
||||
if (!http.aborted && http.callback)
|
||||
http.callback(http);
|
||||
activeAjaxRequests--;
|
||||
checkAjaxRequestsState();
|
||||
|
||||
Reference in New Issue
Block a user