From: Moritz Bunkus Date: Fri, 15 Dec 2006 12:20:44 +0000 (+0000) Subject: Temporäre Dateien unterhalb von users/ anlegen, weil der Webserver da definitiv Schre... X-Git-Tag: release-2.4.0^2~3 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=d726f05aa693408c45d0128b98738cbfce53cb0e;p=kivitendo-erp.git Temporäre Dateien unterhalb von users/ anlegen, weil der Webserver da definitiv Schreibzugriff hat. Fix für Bugzilla #459. --- diff --git a/bin/mozilla/ustva.pl b/bin/mozilla/ustva.pl index ca21b9188..bf9aaecb3 100644 --- a/bin/mozilla/ustva.pl +++ b/bin/mozilla/ustva.pl @@ -1061,14 +1061,14 @@ sub generate_ustva { $file .= $form->{elstersteuernummer}; #file suffix $file .= '.xml'; - $form->{tmpfile} = $file; + $form->{tmpfile} = "$userspath/$file"; } if ( $form->{format} eq 'elstertaxbird' ) { $form->{IN} = 'taxbird.txb'; - $form->{tmpfile} = "USTVA-" . $form->{period} + $form->{tmpfile} = "$userspath/USTVA-" . $form->{period} . sprintf("%02d", $form->{year} % 100) . ".txb"; if ($form->{period} =~ /^[4]\d$/ ){ @@ -1137,10 +1137,9 @@ sub generate_ustva { $form->{templates} = $myconfig{templates}; $form->{templates} = "doc" if ( $form->{type} eq 'help' ); - $lxdebug->leave_sub(); - $form->parse_template($myconfig, $userspath); + $lxdebug->leave_sub(); } sub edit {