1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2024-11-22 02:17:26 +00:00

prevent caching of ajax responses in the control panel

GET requests might be cached. Definitely happens on Internet Explorer. Makes it look like the user is getting unauthorized access.

See https://discourse.mailinabox.email/t/fresh-install-can-login-to-webmail-but-not-admin/394/4.
This commit is contained in:
Joshua Tauberer 2015-03-31 14:52:11 +00:00
parent 14b16b2f36
commit ec039719de

View File

@ -329,6 +329,7 @@ function api(url, method, data, callback, callback_error) {
ajax({ ajax({
url: "/admin" + url, url: "/admin" + url,
method: method, method: method,
cache: false,
data: data, data: data,
beforeSend: function(xhr) { beforeSend: function(xhr) {
// We don't store user credentials in a cookie to avoid the hassle of CSRF // We don't store user credentials in a cookie to avoid the hassle of CSRF