From: phasefx Date: Sun, 16 Nov 2008 19:50:53 +0000 (+0000) Subject: This appears to work whether OpenILS::WWW::Proxy is being used for /exporter or not X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=20a521bd2b44ab44d42d7ac18ea5f2b1f173ffe9;p=Evergreen.git This appears to work whether OpenILS::WWW::Proxy is being used for /exporter or not git-svn-id: svn://svn.open-ils.org/ILS/trunk@11230 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/xul/staff_client/server/cat/record_buckets.js b/Open-ILS/xul/staff_client/server/cat/record_buckets.js index 241c1a2994..aeeb3f3e3f 100644 --- a/Open-ILS/xul/staff_client/server/cat/record_buckets.js +++ b/Open-ILS/xul/staff_client/server/cat/record_buckets.js @@ -66,7 +66,7 @@ cat.record_buckets.export_records = function(obj, output_type) { var persist = Components.classes["@mozilla.org/embedding/browser/nsWebBrowserPersist;1"] .createInstance(Components.interfaces.nsIWebBrowserPersist); - var proto_uri = 'http://' + window.location.hostname + '/exporter?format=' + output_type; + var proto_uri = 'https://' + window.location.hostname + '/exporter?format=' + output_type + '&ses=' + ses(); dump('Record Export URI is ' + proto_uri + '&id=' + record_ids.join('&id=') + '\n');