From: Moritz Bunkus Date: Mon, 10 Oct 2011 13:12:29 +0000 (+0200) Subject: UTF-8-Daten vor Ausgabe an Template auf Form C normalisieren X-Git-Tag: release-2.7.0beta1~240^2 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=3bde3a2889c30abd19e4f48fb4126b713faf75b7;p=kivitendo-erp.git UTF-8-Daten vor Ausgabe an Template auf Form C normalisieren Wenn UTF-8-Daten als Form D vorliegen, so steigt LaTeX aus, weil es diese Form nicht kennt. --- diff --git a/SL/Template/LaTeX.pm b/SL/Template/LaTeX.pm index c66399fc4..c7d51e0e0 100644 --- a/SL/Template/LaTeX.pm +++ b/SL/Template/LaTeX.pm @@ -5,6 +5,7 @@ use parent qw(SL::Template::Simple); use strict; use Cwd; +use Unicode::Normalize qw(); sub new { my $type = shift; @@ -353,8 +354,13 @@ sub parse { return 0; } - binmode OUT, ":utf8" if $::locale->is_utf8; - print(OUT $new_contents); + if ($::locale->is_utf8) { + binmode OUT, ":utf8"; + print OUT Unicode::Normalize::normalize('C', $new_contents); + + } else { + print OUT $new_contents; + } if ($form->{"format"} =~ /postscript/i) { return $self->convert_to_postscript();