FIX: The cachebuster now only includes a questionmark, if there is none in the current url...

This commit is contained in:
Steffen Maaß 2013-02-02 13:15:09 +01:00
parent 2cc9a999f9
commit 71790c52c1
1 changed files with 9 additions and 2 deletions

View File

@ -127,8 +127,11 @@
});
data.records = ids;
if ( url.indexOf('?') !== -1 ) cacheBuster = '&cacheBuster=' + cacheBuster;
else cacheBuster = '?cacheBuster=' + cacheBuster;
$.ajax({
url: url + '/' + action + '?cacheBuster=' + cacheBuster,
url: url + '/' + action + cacheBuster,
data: data,
type: "POST",
context: $(this)
@ -183,8 +186,12 @@
$(formsWithUpadtes).each(function(){
cacheBuster = new Date().getTime() + '_' + $(this).attr('name');
data = $(this).serialize();
if ( url.indexOf('?') !== -1 ) cacheBuster = '&cacheBuster=' + cacheBuster;
else cacheBuster = '?cacheBuster=' + cacheBuster;
$.ajax({
url: url + '?cacheBuster=' + cacheBuster,
url: url + '/' + action + cacheBuster,
data: data,
type: "POST",
context: $(this)