From: miker <miker@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Date: Tue, 16 Feb 2010 18:53:30 +0000 (+0000)
Subject: billing generation typo
X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=54442a15dcaf55f3c624874b46eebe60e4930450;p=contrib%2FConifer.git

billing generation typo

git-svn-id: svn://svn.open-ils.org/ILS/trunk@15558 dcc99617-32d9-48b4-a31d-7c20da2025e4
---

diff --git a/Open-ILS/src/perlmods/OpenILS/Application/Storage/Publisher/action.pm b/Open-ILS/src/perlmods/OpenILS/Application/Storage/Publisher/action.pm
index a90b27c7d4..f17e0c1f60 100644
--- a/Open-ILS/src/perlmods/OpenILS/Application/Storage/Publisher/action.pm
+++ b/Open-ILS/src/perlmods/OpenILS/Application/Storage/Publisher/action.pm
@@ -802,7 +802,7 @@ sub generate_fines {
             $client->respond( "\t$pending_fine_count pending fine(s)\n" );
             next unless ($pending_fine_count);
 
-			my $recuring_fine = int($c->$recurring_fine_method * 100);
+			my $recurring_fine = int($c->$recurring_fine_method * 100);
 			my $max_fine = int($c->max_fine * 100);
 
 			my ($latest_billing_ts, $latest_amount) = ('',0);