[open-ils-commits] r12095 - trunk/Open-ILS/web/opac/skin/default/js (erickson)

svn at svn.open-ils.org svn at svn.open-ils.org
Fri Feb 6 10:55:08 EST 2009


Author: erickson
Date: 2009-02-06 10:55:06 -0500 (Fri, 06 Feb 2009)
New Revision: 12095

Modified:
   trunk/Open-ILS/web/opac/skin/default/js/holds.js
Log:
passing hold cancellation reason from opac-cancelled holds

Modified: trunk/Open-ILS/web/opac/skin/default/js/holds.js
===================================================================
--- trunk/Open-ILS/web/opac/skin/default/js/holds.js	2009-02-06 15:52:21 UTC (rev 12094)
+++ trunk/Open-ILS/web/opac/skin/default/js/holds.js	2009-02-06 15:55:06 UTC (rev 12095)
@@ -842,7 +842,7 @@
 
 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');



More information about the open-ils-commits mailing list