From: Dan Scott Date: Fri, 23 Sep 2011 20:40:38 +0000 (-0400) Subject: OSBO: Accidental copying of the "DVD VIDEO" rule X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=3eb0d8c60f6e681fde9f2ada10adcb0f694f06d8;p=contrib%2FConifer.git OSBO: Accidental copying of the "DVD VIDEO" rule Meant to remove the "DVD" from the "DVD VIDEO" part of the circ modifier the second time around. Signed-off-by: Dan Scott --- diff --git a/Open-ILS/src/javascript/backend/circ/circ_duration_OSBO.js b/Open-ILS/src/javascript/backend/circ/circ_duration_OSBO.js index 96929d230a..186283f774 100644 --- a/Open-ILS/src/javascript/backend/circ/circ_duration_OSBO.js +++ b/Open-ILS/src/javascript/backend/circ/circ_duration_OSBO.js @@ -25,7 +25,7 @@ if (copy.circ_modifier == 'CIRC SHORT') { result.durationRule = '1_day_1_renew'; } -if (copy.circ_modifier == 'DVD VIDEO') { +if (copy.circ_modifier == 'VIDEO') { result.durationRule = '7_days_1_renew'; result.recurringFinesRule = '1_dollar_per_day'; }