[open-ils-commits] r9884 -
branches/rel_1_2/Open-ILS/xul/staff_client/server/cat
svn at svn.open-ils.org
svn at svn.open-ils.org
Thu Jun 19 14:57:20 EDT 2008
Author: phasefx
Date: 2008-06-19 14:57:16 -0400 (Thu, 19 Jun 2008)
New Revision: 9884
Modified:
branches/rel_1_2/Open-ILS/xul/staff_client/server/cat/marcedit.js
Log:
use POST instead of GET to prevent caching
Modified: branches/rel_1_2/Open-ILS/xul/staff_client/server/cat/marcedit.js
===================================================================
--- branches/rel_1_2/Open-ILS/xul/staff_client/server/cat/marcedit.js 2008-06-19 17:52:32 UTC (rev 9883)
+++ branches/rel_1_2/Open-ILS/xul/staff_client/server/cat/marcedit.js 2008-06-19 18:57:16 UTC (rev 9884)
@@ -101,7 +101,7 @@
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, '');
}
More information about the open-ils-commits
mailing list