Release 3.0.0rc1
[kivitendo-erp.git] / SL / Template / LaTeX.pm
index f38d7fb..a862431 100644 (file)
@@ -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++) {