use POST instead of GET to prevent caching
authorphasefx <phasefx@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Thu, 19 Jun 2008 18:57:44 +0000 (18:57 +0000)
committerphasefx <phasefx@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Thu, 19 Jun 2008 18:57:44 +0000 (18:57 +0000)
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

index 9ff5261..fda244a 100644 (file)
@@ -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, '');
                }