[freeside-commits] branch master updated. cd4196b482d216fe8a0e132d2e156134a3b56407
Ivan
ivan at 420.am
Thu Apr 18 22:49:15 PDT 2013
The branch, master has been updated
via cd4196b482d216fe8a0e132d2e156134a3b56407 (commit)
from 394ee3d3918436f19ccea49354978057549e0249 (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 cd4196b482d216fe8a0e132d2e156134a3b56407
Author: Ivan Kohler <ivan at freeside.biz>
Date: Thu Apr 18 22:49:14 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