diff options
author | Christian Pointner <equinox@spreadspace.org> | 2015-10-09 22:23:41 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@spreadspace.org> | 2015-10-09 22:23:41 (GMT) |
commit | 96a74ca08ad6cb407823374d86a1c8da99af2871 (patch) | |
tree | eac2ada91c84c417e04083dd07811a0ca01c884a /lib/RHRD | |
parent | 8101926eadf4723bb027cf53e3f2831d3d5d26b2 (diff) |
fixed transtype for log start
Diffstat (limited to 'lib/RHRD')
-rwxr-xr-x | lib/RHRD/rddb.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/RHRD/rddb.pm b/lib/RHRD/rddb.pm index e29cde1..02cd457 100755 --- a/lib/RHRD/rddb.pm +++ b/lib/RHRD/rddb.pm @@ -1223,7 +1223,7 @@ sub create_show_log my @carts = (); for my $cart (@{$ctx->{'config'}{'shows'}{'logprefix'}}) { - push @carts, { NUMBER => $cart, START_TIME => 0, TRANS_TYPE => 2 }; + push @carts, { NUMBER => $cart, START_TIME => 0, TRANS_TYPE => 1 }; } for my $cart ($low_cart .. $high_cart) { push @carts, { NUMBER => $cart, START_TIME => 0, TRANS_TYPE => 0 }; |