From 5fed6f202795ee5adffd6f6e9f26a6ff104b2628 Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Wed, 31 Jan 2007 12:10:34 +0000 Subject: [PATCH] =?utf8?q?Auch=20bei=20den=20Variablen=20company,=20addres?= =?utf8?q?s=20und=20signature=20eventuell=20als=20\\n=20escapte=20Zeilenum?= =?utf8?q?br=C3=BCche=20wieder=20in=20echte=20Zeilenumbr=C3=BCche=20umwand?= =?utf8?q?eln,=20damit=20die=20Template-Klasse=20sie=20richtig=20ausgibt.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- SL/Form.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/SL/Form.pm b/SL/Form.pm index 9a992bd3a..ae23fab7b 100644 --- a/SL/Form.pm +++ b/SL/Form.pm @@ -780,6 +780,7 @@ sub parse_template { co_ustid taxnumber duns)); map({ $self->{"employee_${_}"} =~ s/\\n/\n/g; } qw(company address signature)); + map({ $self->{$_} =~ s/\\n/\n/g; } qw(company address signature)); $self->{copies} = 1 if (($self->{copies} *= 1) <= 0); -- 2.20.1