From d213d32e082bfd4c1d9dbd7e27151b4fdb17b9fd Mon Sep 17 00:00:00 2001 From: Dan Scott Date: Fri, 23 Sep 2011 16:40:38 -0400 Subject: [PATCH] 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 --- Open-ILS/src/javascript/backend/circ/circ_duration_OSBO.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'; } -- 2.11.0