From: erickson Date: Fri, 6 Feb 2009 15:55:06 +0000 (+0000) Subject: passing hold cancellation reason from opac-cancelled holds X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=2bb7e6b24eea7bc6eef624fe09e8a5e960d480f8;p=Evergreen.git passing hold cancellation reason from opac-cancelled holds git-svn-id: svn://svn.open-ils.org/ILS/trunk@12095 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/web/opac/skin/default/js/holds.js b/Open-ILS/web/opac/skin/default/js/holds.js index beb7315ece..92afad0527 100644 --- a/Open-ILS/web/opac/skin/default/js/holds.js +++ b/Open-ILS/web/opac/skin/default/js/holds.js @@ -842,7 +842,7 @@ function holdProcessResult( hold, res, recurse ) { function holdsCancel(holdid, user) { if(!user) user = G.user; - var req = new Request(CANCEL_HOLD, user.session, holdid); + var req = new Request(CANCEL_HOLD, user.session, holdid, /* Patron via OPAC */ 6); req.send(true); return req.result(); runEvt('common', 'holdUpdated');