[freeside-commits] branch master updated. 72c6f125423327ed4e89170d484bc5e4a5760bf2
Christopher Burger
burgerc at freeside.biz
Thu Jan 25 09:28:36 PST 2018
The branch, master has been updated
via 72c6f125423327ed4e89170d484bc5e4a5760bf2 (commit)
from 7b5f402ed6fa6e9b82d724b7a14b341be819e5be (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 72c6f125423327ed4e89170d484bc5e4a5760bf2
Author: Christopher Burger <burgerc at freeside.biz>
Date: Thu Jan 25 12:27:36 2018 -0500
RT# 79121 - fixed error with loading files with option a
diff --git a/FS/bin/freeside-cdr-aninetworks-import b/FS/bin/freeside-cdr-aninetworks-import
index a8fc0cbfd..b5fc226a4 100755
--- a/FS/bin/freeside-cdr-aninetworks-import
+++ b/FS/bin/freeside-cdr-aninetworks-import
@@ -61,8 +61,8 @@ if ( $opt_a ) {
if ($most_recent) {
if ($most_recent->cdrbatch =~ /^*Daily_(\d+)_/) {
my $date = $1;
- warn "limiting to dates > $date (from most recent batch)\n" if $opt_v;
- @files = grep { /^*Daily_(\d+)_/ && $1 > $date } @files;
+ warn "limiting to dates >= $date (from most recent batch)\n" if $opt_v;
+ @files = grep { /^*Daily_(\d+)_/ && $1 >= $date } @files;
}
}
}
-----------------------------------------------------------------------
Summary of changes:
FS/bin/freeside-cdr-aninetworks-import | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
More information about the freeside-commits
mailing list