projects
/
kivitendo-erp.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2a79562
)
Eval-Error im Dispatcher auch auf STDERR ausgeben
author
Moritz Bunkus
<m.bunkus@linet-services.de>
Tue, 21 Jun 2011 08:12:27 +0000
(10:12 +0200)
committer
Moritz Bunkus
<m.bunkus@linet-services.de>
Tue, 21 Jun 2011 08:12:27 +0000
(10:12 +0200)
Wurde bereits ein Template ausgegeben, bevor der Fehler auftrat, so
konnte es sein, dass die Fehlermeldung komplett verschluckt bzw. vom
Browser nicht angezeigt wird.
SL/Dispatcher.pm
patch
|
blob
|
history
diff --git
a/SL/Dispatcher.pm
b/SL/Dispatcher.pm
index
9c9e605
..
cb63532
100644
(file)
--- a/
SL/Dispatcher.pm
+++ b/
SL/Dispatcher.pm
@@
-227,6
+227,7
@@
sub handle_request {
1;
} or do {
if ($EVAL_ERROR ne END_OF_REQUEST) {
+ print STDERR $EVAL_ERROR;
$::form->{label_error} = $::cgi->pre($EVAL_ERROR);
eval { show_error('generic/error') };
}