Template-Fehlermeldungen im Browser ausgeben
authorMoritz Bunkus <m.bunkus@linet-services.de>
Thu, 18 Feb 2010 10:42:33 +0000 (11:42 +0100)
committerSven Schöling <s.schoeling@linet-services.de>
Tue, 20 Jul 2010 09:21:46 +0000 (11:21 +0200)
SL/Form.pm

index 468f6dc..a6cb9da 100644 (file)
@@ -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();