mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-11 13:58:54 +00:00
[ticket/13277] Force IE to not cache AJAX requests.
Caching causes problems, such as the inability to move a forum/CPF/module in the same direction by more than one row. PHPBB3-13277
This commit is contained in:
parent
4f96688bf7
commit
266755bd82
1 changed files with 2 additions and 1 deletions
|
@ -386,7 +386,8 @@ phpbb.ajaxify = function(options) {
|
||||||
type: method,
|
type: method,
|
||||||
data: data,
|
data: data,
|
||||||
success: returnHandler,
|
success: returnHandler,
|
||||||
error: errorHandler
|
error: errorHandler,
|
||||||
|
cache: false
|
||||||
});
|
});
|
||||||
request.always(function() {
|
request.always(function() {
|
||||||
$loadingIndicator.fadeOut(phpbb.alertTime);
|
$loadingIndicator.fadeOut(phpbb.alertTime);
|
||||||
|
|
Loading…
Add table
Reference in a new issue