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>maint
parent
634b8d0514
commit
793c400cc1
|
|
@ -2919,7 +2919,7 @@ sub git_tag {
|
||||||
my $comment = $tag{'comment'};
|
my $comment = $tag{'comment'};
|
||||||
foreach my $line (@$comment) {
|
foreach my $line (@$comment) {
|
||||||
chomp($line);
|
chomp($line);
|
||||||
print esc_html($line) . "<br/>\n";
|
print esc_html($line, -nbsp=>1) . "<br/>\n";
|
||||||
}
|
}
|
||||||
print "</div>\n";
|
print "</div>\n";
|
||||||
git_footer_html();
|
git_footer_html();
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue