From 9f22dfd0a3a2b87555d36ed7601ab3c309560821 Mon Sep 17 00:00:00 2001 From: erickson Date: Fri, 23 Jun 2006 17:20:49 +0000 Subject: [PATCH] force post for IE to prevent caching git-svn-id: svn://svn.open-ils.org/ILS/trunk@4747 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- Open-ILS/web/opac/common/js/RemoteRequest.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Open-ILS/web/opac/common/js/RemoteRequest.js b/Open-ILS/web/opac/common/js/RemoteRequest.js index 30e2f9bb0f..43548ae060 100644 --- a/Open-ILS/web/opac/common/js/RemoteRequest.js +++ b/Open-ILS/web/opac/common/js/RemoteRequest.js @@ -211,7 +211,13 @@ RemoteRequest.prototype.send = function(blocking) { /* this number could be a lot higher.. */ var whole = url + this.param_string + 1; - if( whole.length < 256 ) this.type = 'GET'; + + + if(!IE) { + /* IE will cache this, so don't use it if IE. + useful for debugging */ + if( whole.length < 256 ) this.type = 'GET'; + } var data = null; if( this.type == 'GET' ) url += "?" + this.param_string; -- 2.43.2