X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FTemplate%2FLaTeX.pm;h=a862431d81f4e32c28efedb2f3c3fcb56728be53;hb=26ce9b7a6b8aa870ca1713101eaeda7a32da0904;hp=f38d7fb2ab4e31d905988c3e200ffb2afb8468f5;hpb=f353a0b278266d6626c9a1753f4298c6b8f681ba;p=kivitendo-erp.git diff --git a/SL/Template/LaTeX.pm b/SL/Template/LaTeX.pm index f38d7fb2a..a862431d8 100644 --- a/SL/Template/LaTeX.pm +++ b/SL/Template/LaTeX.pm @@ -63,6 +63,7 @@ sub parse_foreach { $form->{"__odd__"} = (($i + 1) % 2) == 1; $form->{"__counter__"} = $i + 1; + #everything from here to the next marker should be removed after the release of 2.7.0 if ( ref $description_array eq 'ARRAY' && scalar @{$description_array} == scalar @{$ary} && $self->{"chars_per_line"} != 0) @@ -103,6 +104,7 @@ sub parse_foreach { } $current_line += $lines; } + #stop removing code here. if ( ref $linetotal_array eq 'ARRAY' && $i < scalar(@{$linetotal_array})) { @@ -388,7 +390,7 @@ sub convert_to_postscript { my $latex = $self->_get_latex_path(); my $old_home = $ENV{HOME}; my $old_openin_any = $ENV{openin_any}; - $ENV{HOME} = $userspath =~ m|^/| ? $userspath : getcwd() . "/" . $userspath; + $ENV{HOME} = $userspath =~ m|^/| ? $userspath : getcwd(); $ENV{openin_any} = "p"; for (my $run = 1; $run <= 2; $run++) { @@ -437,7 +439,7 @@ sub convert_to_pdf { my $latex = $self->_get_latex_path(); my $old_home = $ENV{HOME}; my $old_openin_any = $ENV{openin_any}; - $ENV{HOME} = $userspath =~ m|^/| ? $userspath : getcwd() . "/" . $userspath; + $ENV{HOME} = $userspath =~ m|^/| ? $userspath : getcwd(); $ENV{openin_any} = "p"; for (my $run = 1; $run <= 2; $run++) {