gitweb: Replace SPC with   also in tag comment

Commit messages had SPC replaced with   entity;
make it so also in tag message (tag comment).

Signed-off-by: Jakub Narebski <jnareb@gmail.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
Jakub Narebski 2006-11-24 22:25:50 +01:00 committed by Junio C Hamano
parent 634b8d0514
commit 793c400cc1

View file

@ -2919,7 +2919,7 @@ sub git_tag {
my $comment = $tag{'comment'};
foreach my $line (@$comment) {
chomp($line);
print esc_html($line) . "<br/>\n";
print esc_html($line, -nbsp=>1) . "<br/>\n";
}
print "</div>\n";
git_footer_html();