From: =?utf-8?q?Recai=20Okta=C5=9F?= <roktas@xxxxxxxxxx> gitweb used to use utf8 only in stdout. As a result, included files like indextext.html appeared garbled if they contain utf8 characters. Now utf8 is also used when reading files. The patch was submitted through http://bugs.debian.org/487465 Signed-off-by: Gerrit Pape <pape@xxxxxxxxxxx> --- gitweb/gitweb.perl | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl index 90cd99b..96cb4e0 100755 --- a/gitweb/gitweb.perl +++ b/gitweb/gitweb.perl @@ -16,7 +16,7 @@ use Encode; use Fcntl ':mode'; use File::Find qw(); use File::Basename qw(basename); -binmode STDOUT, ':utf8'; +use open qw(:std :utf8); BEGIN { CGI->compile() if $ENV{'MOD_PERL'}; -- 1.5.6 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html