[freeside-commits] branch FREESIDE_2_3_BRANCH updated. 11b521c724e311438020861cd060819131ac871a
Ivan
ivan at 420.am
Thu Apr 18 22:49:16 PDT 2013
The branch, FREESIDE_2_3_BRANCH has been updated
via 11b521c724e311438020861cd060819131ac871a (commit)
from 59009ed79364284a270477255e7417667a801866 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 11b521c724e311438020861cd060819131ac871a
Author: Ivan Kohler <ivan at freeside.biz>
Date: Thu Apr 18 22:49:15 2013 -0700
uppercase company name in NACHA export format, RT#21597
diff --git a/FS/FS/pay_batch/nacha.pm b/FS/FS/pay_batch/nacha.pm
index d0758f4..c069082 100644
--- a/FS/FS/pay_batch/nacha.pm
+++ b/FS/FS/pay_batch/nacha.pm
@@ -47,7 +47,7 @@ $DEBUG = 0;
my $origin = $1;
my $company = $conf->config('company_name', $pay_batch->agentnum);
- $company = substr($company. (' 'x23), 0, 23);
+ $company = substr(uc($company). (' 'x23), 0, 23);
my $now = time;
-----------------------------------------------------------------------
Summary of changes:
FS/FS/pay_batch/nacha.pm | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
More information about the freeside-commits
mailing list