From: phasefx Date: Thu, 19 Jun 2008 18:58:10 +0000 (+0000) Subject: use POST instead of GET to prevent caching X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=862746c4838115c28388c6d708600c3884c38895;p=Evergreen.git use POST instead of GET to prevent caching git-svn-id: svn://svn.open-ils.org/ILS/trunk@9886 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/xul/staff_client/server/cat/marcedit.js b/Open-ILS/xul/staff_client/server/cat/marcedit.js index 8c815e81cd..7c82fed073 100644 --- a/Open-ILS/xul/staff_client/server/cat/marcedit.js +++ b/Open-ILS/xul/staff_client/server/cat/marcedit.js @@ -108,7 +108,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, ''); }