From 77306557cea25696b290c1a2865ecef72fed923f Mon Sep 17 00:00:00 2001 From: Dan Scott Date: Tue, 20 Sep 2011 13:01:32 -0400 Subject: [PATCH] OSBO really did want $0.25/hour for all reserve periods 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 6225838752..96929d230a 100644 --- a/Open-ILS/src/javascript/backend/circ/circ_duration_OSBO.js +++ b/Open-ILS/src/javascript/backend/circ/circ_duration_OSBO.js @@ -47,7 +47,7 @@ res_day_match = res_day_re.exec(copy.circ_modifier); res_hour_match = res_hour_re.exec(copy.circ_modifier); if (res_day_match) { result.durationRule = res_day_match[1] + '_days_0_renew'; - result.recurringFinesRule = '25_cent_per_day'; + result.recurringFinesRule = '25_cent_per_hour'; } else if (res_hour_match) { result.durationRule = res_hour_match[1] + '_hours_0_renew'; result.recurringFinesRule = '25_cent_per_hour'; -- 2.11.0