diff options
Diffstat (limited to 'web')
-rw-r--r-- | web/cobrands/fixmystreet/fixmystreet.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/cobrands/fixmystreet/fixmystreet.js b/web/cobrands/fixmystreet/fixmystreet.js index 8e8941421..a0d830a65 100644 --- a/web/cobrands/fixmystreet/fixmystreet.js +++ b/web/cobrands/fixmystreet/fixmystreet.js @@ -1314,7 +1314,7 @@ fixmystreet.display = { }, report: function(reportPageUrl, reportId, callback) { - $.ajax(reportPageUrl).done(function(html, textStatus, jqXHR) { + $.ajax(reportPageUrl, { cache: false }).done(function(html, textStatus, jqXHR) { var $reportPage = $(html), $twoColReport = $reportPage.find('.two_column_sidebar'), $sideReport = $reportPage.find('#side-report'); |