Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/gitweb
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2013-09-17 22:42:27 +0400
committerJunio C Hamano <gitster@pobox.com>2013-09-17 22:42:27 +0400
commite8717b67fec7ec7c1f8742bb7b75900ab60bbc1a (patch)
tree943a52343d1314e10d16d79c39f5479a0919f0a6 /gitweb
parent5ff9f2351a4d4dc31b0b11258d587c95826acc57 (diff)
parentfd87004e51df835e5833bfe1bff3ad0137d42227 (diff)
Merge branch 'ab/gitweb-author-initials'
* ab/gitweb-author-initials: gitweb: Fix the author initials in blame for non-ASCII names
Diffstat (limited to 'gitweb')
-rwxr-xr-xgitweb/gitweb.perl1
1 files changed, 1 insertions, 0 deletions
diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl
index b5d156f7d0..68c77f6f8f 100755
--- a/gitweb/gitweb.perl
+++ b/gitweb/gitweb.perl
@@ -6631,6 +6631,7 @@ sub git_blame_common {
$hash_base, '--', $file_name
or die_error(500, "Open git-blame --porcelain failed");
}
+ binmode $fd, ':utf8';
# incremental blame data returns early
if ($format eq 'data') {