From: erickson Date: Fri, 8 Dec 2006 18:34:28 +0000 (+0000) Subject: passing the opac_renewal flag on renewals X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=1837c8289bf6fbe907d1c1e229b69c804a5917c2;p=evergreen%2Fpines.git passing the opac_renewal flag on renewals git-svn-id: svn://svn.open-ils.org/ILS/trunk@6668 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/web/opac/skin/default/js/myopac.js b/Open-ILS/web/opac/skin/default/js/myopac.js index a8e6a901d0..05ac65d4ef 100644 --- a/Open-ILS/web/opac/skin/default/js/myopac.js +++ b/Open-ILS/web/opac/skin/default/js/myopac.js @@ -232,7 +232,7 @@ function myOPACRenewCirc(circid) { if(!confirm($('myopac_renew_confirm').innerHTML)) return; var req = new Request(RENEW_CIRC, G.user.session, - { patron : G.user.id(), copyid : circ.target_copy() } ); + { patron : G.user.id(), copyid : circ.target_copy(), opac_renewal : 1 } ); req.request.alertEvent = false; req.send(true); var res = req.result();