diff options
author | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2008-08-23 01:34:06 +0000 |
---|---|---|
committer | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2008-08-23 01:34:06 +0000 |
commit | c56283e948312ef0ba985344f9f209a024f85aec (patch) | |
tree | 334429b04e610fd9058d362848ae4caac64baf08 | |
parent | 781db85ba18f8055811752c8838dba1ded3bc15c (diff) |
Correcting bug 1875001
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@2301 4979c152-3d1c-0410-bac9-87ea11338e46
-rw-r--r-- | bin/rp.pl | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -741,9 +741,8 @@ qq|ca.pl?path=$form->{path}&action=list_transactions&accounttype=$form->{account $endbalance = $form->format_amount( \%myconfig, ( $ref->{balance} + $ref->{amount} ) * $ml, 2, " " ); - - if ( $ref->{charttype} eq "H" && $subtotal && $form->{l_subtotal} ) { - + if ( ($ref->{charttype} eq "H") && $subtotal && $form->{l_subtotal} ) { + my %column_data; if ($subtotal) { for (qw(accno begbalance endbalance)) { |