From: Moritz Bunkus Date: Wed, 22 Aug 2012 15:50:50 +0000 (+0200) Subject: Vor Exception-Ausgabe sicherstellen, dass das aktuelle Verzeichnis OK ist X-Git-Tag: release-3.0.0beta1~275^2~9 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=e7d52be303c9251fa2a46dee0d9a6c45fb0e2d54;p=kivitendo-erp.git Vor Exception-Ausgabe sicherstellen, dass das aktuelle Verzeichnis OK ist --- diff --git a/SL/Dispatcher.pm b/SL/Dispatcher.pm index 5b912232b..c6f3b5e10 100644 --- a/SL/Dispatcher.pm +++ b/SL/Dispatcher.pm @@ -253,6 +253,7 @@ sub handle_request { if ($EVAL_ERROR ne END_OF_REQUEST) { print STDERR $EVAL_ERROR; $::form->{label_error} = $::request->{cgi}->pre($EVAL_ERROR); + chdir SL::System::Process::exe_dir; eval { show_error('generic/error') }; } };