From 538a75f945c0bc6b23152624b12b5887d1e27ba3 Mon Sep 17 00:00:00 2001 From: phasefx Date: Thu, 19 Jun 2008 18:57:44 +0000 Subject: [PATCH] use POST instead of GET to prevent caching git-svn-id: svn://svn.open-ils.org/ILS/branches/rel_1_2_2@9885 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- Open-ILS/xul/staff_client/server/cat/marcedit.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/xul/staff_client/server/cat/marcedit.js b/Open-ILS/xul/staff_client/server/cat/marcedit.js index 9ff526155a..fda244a207 100644 --- a/Open-ILS/xul/staff_client/server/cat/marcedit.js +++ b/Open-ILS/xul/staff_client/server/cat/marcedit.js @@ -101,7 +101,7 @@ function my_init() { if (window.xulG.record.url) { var req = new XMLHttpRequest(); - req.open('GET',window.xulG.record.url,false); + req.open('POST',window.xulG.record.url,false); req.send(null); window.xulG.record.marc = req.responseText.replace(xmlDeclaration, ''); } -- 2.11.0