From 8a4c0366552f532cd394c1cc1e8e3e4846f2e507 Mon Sep 17 00:00:00 2001 From: Jerome Nadaud Date: Thu, 7 Nov 2013 17:58:17 +0100 Subject: [PATCH] // Fix cache problem --- admin-dev/themes/default/js/jquery.fileupload.js | 1 + 1 file changed, 1 insertion(+) diff --git a/admin-dev/themes/default/js/jquery.fileupload.js b/admin-dev/themes/default/js/jquery.fileupload.js index 16ebb1d95..a39958abb 100644 --- a/admin-dev/themes/default/js/jquery.fileupload.js +++ b/admin-dev/themes/default/js/jquery.fileupload.js @@ -562,6 +562,7 @@ var options = $.extend({}, this.options, data); this._initFormSettings(options); this._initDataSettings(options); + options.url = options.url+'&rand=' + new Date().getTime(); return options; },