From: Moritz Bunkus Date: Wed, 12 Sep 2007 07:47:28 +0000 (+0000) Subject: Ein "," anstelle eines "." sorgte dafür, dass die Steuerkontenbeschreibungen bei... X-Git-Tag: release-2.6.0beta1~501 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=0bd2361a0fe7bb89b69be5e08163c7d7c3f48dcf;p=kivitendo-erp.git Ein "," anstelle eines "." sorgte dafür, dass die Steuerkontenbeschreibungen bei Kundenrechnungen nicht ausgedruckt wurden (nur der Steuersatz). Betrifft die Template-Variable <%taxdescription%>. --- diff --git a/bin/mozilla/is.pl b/bin/mozilla/is.pl index f802c948b..9ac6d0e31 100644 --- a/bin/mozilla/is.pl +++ b/bin/mozilla/is.pl @@ -599,7 +599,7 @@ sub form_header { max_dunning_level dunning_amount shiptoname shiptostreet shiptozipcode shiptocity shiptocountry shiptocontact shiptophone shiptofax shiptoemail shiptodepartment_1 shiptodepartment_2 message email subject cc bcc taxaccounts), - map { $_.'_rate', $_,'_description', $_.'_taxnumber' } split / /, $form->{taxaccounts} ); + map { $_.'_rate', $_.'_description', $_.'_taxnumber' } split / /, $form->{taxaccounts} ); print qq|

$form->{saved_message}

| if $form->{saved_message};