Einige Variablen wurden umbenannt und müssen auch an anderer Stelle behandelt werden.
authorMoritz Bunkus <m.bunkus@linet-services.de>
Wed, 27 Dec 2006 09:23:37 +0000 (09:23 +0000)
committerMoritz Bunkus <m.bunkus@linet-services.de>
Wed, 27 Dec 2006 09:23:37 +0000 (09:23 +0000)
SL/Form.pm
bin/mozilla/io.pl

index 3606073..0616e1e 100644 (file)
@@ -774,6 +774,8 @@ sub parse_template {
 
   map({ $self->{"employee_${_}"} = $myconfig->{$_}; }
       qw(email tel fax name signature company address businessnumber));
+  map({ $self->{"employee_${_}"} =~ s/\\n/\n/g; }
+      qw(company address signature));
 
   $self->{copies} = 1 if (($self->{copies} *= 1) <= 0);
 
index e7eb2fb..6c82d4c 100644 (file)
@@ -1803,8 +1803,6 @@ sub print_form {
 
   $form->{notes} =~ s/^\s+//g;
 
-  map({ $form->{$_} =~ s/\\n/\n/g; } qw(company address));
-
   $form->{templates} = "$myconfig{templates}";
 
   $form->{language} = $form->get_template_language(\%myconfig);