From 793c400cc1028cca4078281d69aa43fac2d6d0ba Mon Sep 17 00:00:00 2001 From: Jakub Narebski Date: Fri, 24 Nov 2006 22:25:50 +0100 Subject: [PATCH] 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 --- gitweb/gitweb.perl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl index ce185d9037..75e3502fe8 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(); -- 2.11.4.GIT