mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-04-14 09:48:51 +00:00
1
NEWS
1
NEWS
@@ -13,6 +13,7 @@ Bug fixes
|
||||
- [eas] improved EAS parameters parsing (#4003)
|
||||
- [eas] properly handle canceled appointments
|
||||
- [web] fixed SCAYT automatic language selection in HTML editor
|
||||
- [web] prevent 304 HTTP status code for Ajax requests on IE (#4066)
|
||||
|
||||
2.3.19 (2017-01-09)
|
||||
-------------------
|
||||
|
||||
@@ -468,6 +468,15 @@ function triggerAjaxRequest(url, callback, userdata, content, headers, attempt)
|
||||
activeAjaxRequests++;
|
||||
document.animTimer = setTimeout("checkAjaxRequestsState();", 250);
|
||||
|
||||
if (Prototype.Browser.IE) {
|
||||
// Prevent 304 HTTP status code from the server
|
||||
if (url.indexOf('?') >= 0)
|
||||
url += '&';
|
||||
else
|
||||
url += '?';
|
||||
url += 'nc=' + Math.random();
|
||||
}
|
||||
|
||||
http.open(method, url, true);
|
||||
http.url = url;
|
||||
http.paramHeaders = headers;
|
||||
|
||||
Reference in New Issue
Block a user