Template-Toolkit-Konfiguration: Mitgeben, dass Templates in UTF-8 encodiert sind
authorMoritz Bunkus <m.bunkus@linet-services.de>
Wed, 19 Feb 2014 12:20:30 +0000 (13:20 +0100)
committerMoritz Bunkus <m.bunkus@linet-services.de>
Mon, 24 Feb 2014 13:40:02 +0000 (14:40 +0100)
Damit ist die Verwendung von Nicht-ASCII-Zeichen direkt im HTML möglich.

SL/Form.pm
SL/Presenter.pm

index 0c532ce..875b726 100644 (file)
@@ -673,6 +673,7 @@ sub init_template {
      'COMPILE_EXT'  => '.tcc',
      'COMPILE_DIR'  => $::lx_office_conf{paths}->{userspath} . '/templates-cache',
      'ERROR'        => 'templates/webpages/generic/exception.html',
+     'ENCODING'     => 'utf8',
   })) || die;
 }
 
index 36186c4..23b8ad4 100644 (file)
@@ -116,6 +116,7 @@ sub get_template {
                     COMPILE_EXT  => '.tcc',
                     COMPILE_DIR  => $::lx_office_conf{paths}->{userspath} . '/templates-cache',
                     ERROR        => 'templates/webpages/generic/exception.html',
+                    ENCODING     => 'utf8',
                   }) || croak;
 
   return $self->{template};