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:
08388ac
)
Template-Fehlermeldungen im Browser ausgeben
author
Moritz Bunkus
<m.bunkus@linet-services.de>
Thu, 18 Feb 2010 10:42:33 +0000
(11:42 +0100)
committer
Sven Schöling
<s.schoeling@linet-services.de>
Tue, 20 Jul 2010 09:21:46 +0000
(11:21 +0200)
SL/Form.pm
patch
|
blob
|
history
diff --git
a/SL/Form.pm
b/SL/Form.pm
index
468f6dc
..
a6cb9da
100644
(file)
--- a/
SL/Form.pm
+++ b/
SL/Form.pm
@@
-848,9
+848,7
@@
sub parse_html_template {
map { $additional_params->{$_} ||= $self->{$_} } keys %{ $self };
my $output;
- if (!$template->process($file, $additional_params, \$output)) {
- print STDERR $template->error();
- }
+ $template->process($file, $additional_params, \$output) || die $template->error();
$main::lxdebug->leave_sub();