Skip to content

Commit c0c8013

Browse files
committed
bump to version 1.8.1
1 parent b2a11d5 commit c0c8013

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

CTSMS/BulkProcessor/Globals.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ umask 0000;
107107

108108
# general constants
109109
our $system_name = 'Bulk Processing Framework';
110-
our $VERSION = '1.8.0';
110+
our $VERSION = '1.8.1';
111111
our $system_version = $VERSION; #keep this filename-save
112112
our $system_abbreviation = 'bpf'; #keep this filename-, dbname-save
113113
our $system_instance = 'phoenix'; #'test'; #'2014'; #dbname-save 0-9a-z_

CTSMS/BulkProcessor/Projects/Render/JournalReportDiagrams.pm

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -194,17 +194,12 @@ sub _create_journalentry_24hheatmap {
194194

195195
my $filter_and = (defined $filter and length($filter) > 0 ? $filter . ' and' : '');
196196
for (my $day = 0; $day <= $days; $day++) {
197-
198197
for (my $hour = 0; $hour <= 23; $hour++) {
199198
$statement = "select count(*) from journal_entry where" . $filter_and . " modified_timestamp >= ? and modified_timestamp < ? and EXTRACT(HOUR FROM modified_timestamp) = ?";
200199
my $count = $db->db_get_value($statement, $start . ' 00:00:00', $stop . ' 00:00:00', $hour);
201200
print DATA_FILE substr($start,0,10) . "\t" . $hour . "\t" . $count . "\n";
202201
$max = $count > $max ? $count : $max;
203-
204202
}
205-
206-
207-
208203
$start = $stop;
209204
$stop = add_days(split_date($start),1);
210205
print DATA_FILE "\n";

0 commit comments

Comments
 (0)