From: Moritz Bunkus Date: Wed, 22 Jul 2009 15:28:10 +0000 (+0200) Subject: Auch wirklich $form->{TEMPLATE_ARRAYS}->{...} initialisieren, und nicht nur den Key... X-Git-Tag: release-2.6.1beta1~347 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=fdb14a8572b2345702e4bae9801cccb7b154508f;p=kivitendo-erp.git Auch wirklich $form->{TEMPLATE_ARRAYS}->{...} initialisieren, und nicht nur den Key ansprechen. --- diff --git a/SL/IS.pm b/SL/IS.pm index b19705364..2550393fe 100644 --- a/SL/IS.pm +++ b/SL/IS.pm @@ -155,7 +155,7 @@ sub invoice_details { my @payment_arrays = qw(payment paymentaccount paymentdate paymentsource paymentmemo); - map { $form->{TEMPLATE_ARRAYS}{$_} => [] } (@arrays, @tax_arrays, @payment_arrays); + map { $form->{TEMPLATE_ARRAYS}->{$_} = [] } (@arrays, @tax_arrays, @payment_arrays); foreach $item (sort { $a->[1] cmp $b->[1] } @partsgroup) { $i = $item->[0];