From: Jakub Narebski Date: Fri, 24 Nov 2006 21:25:50 +0000 (+0100) Subject: gitweb: Replace SPC with   also in tag comment X-Git-Tag: v1.5.0-rc0~228 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=793c400cc1028cca4078281d69aa43fac2d6d0ba;p=git.git 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 Signed-off-by: Junio C Hamano --- diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl index ce185d903..75e3502fe 100755 --- a/gitweb/gitweb.perl +++ b/gitweb/gitweb.perl @@ -2919,7 +2919,7 @@ sub git_tag { my $comment = $tag{'comment'}; foreach my $line (@$comment) { chomp($line); - print esc_html($line) . "
\n"; + print esc_html($line, -nbsp=>1) . "
\n"; } print "\n"; git_footer_html();