summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoreinhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46>2007-02-02 04:44:10 +0000
committereinhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46>2007-02-02 04:44:10 +0000
commitc7ddc3676d85ea9da1ef3a158b62847213b063bd (patch)
tree6540f1f6932e31643a066fecde19dd92bac93b33
parent6b53a9b4091fe9817736e29db467a69da4e41f2a (diff)
Fixing bug 1616749; cc and bcc are no longer deleted when converting invoice.
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@786 4979c152-3d1c-0410-bac9-87ea11338e46
-rwxr-xr-xbin/oe.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/oe.pl b/bin/oe.pl
index 642b0732..320a7fa8 100755
--- a/bin/oe.pl
+++ b/bin/oe.pl
@@ -1940,7 +1940,7 @@ sub invoice {
$buysell = 'buy';
}
- for (qw(id subject message cc bcc printed emailed queued)) { delete $form->{$_} }
+ for (qw(id subject message printed emailed queued)) { delete $form->{$_} }
$form->{$form->{vc}} =~ s/--.*//g;
$form->{type} = "invoice";
@@ -1983,7 +1983,7 @@ sub invoice {
for (qw(qty sellprice discount)) { $form->{"${_}_$i"} = $form->format_amount(\%myconfig, $form->{"${_}_$i"}) }
}
- for (qw(id subject message cc bcc printed emailed queued audittrail)) { delete $form->{$_} }
+ for (qw(id subject message printed emailed queued audittrail)) { delete $form->{$_} }
&display_form;