From: Bernd Blessmann Date: Thu, 27 Oct 2011 11:47:07 +0000 (+0200) Subject: $userspath nicht an das aktuelle Verzeichnis anhängen, ... X-Git-Tag: release-2.7.0beta1~194^2^2 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=bf627c4fcc8f3d8d3e05cbd1e301218f09e08ede;p=kivitendo-erp.git $userspath nicht an das aktuelle Verzeichnis anhängen, ... da vorher schon in $userspath gewechselt wurde. --- diff --git a/SL/Template/LaTeX.pm b/SL/Template/LaTeX.pm index f38d7fb2a..2df7e8cfb 100644 --- a/SL/Template/LaTeX.pm +++ b/SL/Template/LaTeX.pm @@ -388,7 +388,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 +437,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++) {