summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 634b8d0)
raw | patch | inline | side by side (parent: 634b8d0)
author | Jakub Narebski <jnareb@gmail.com> | |
Fri, 24 Nov 2006 21:25:50 +0000 (22:25 +0100) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Fri, 24 Nov 2006 22:01:23 +0000 (14:01 -0800) |
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>
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>
gitweb/gitweb.perl | patch | blob | history |
diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl
index ce185d9037e3e53bca3dd2ce0d960e6e2eb5a4a0..75e3502fe8b67b015680a87723f8cae8d9d957e8 100755 (executable)
--- a/gitweb/gitweb.perl
+++ b/gitweb/gitweb.perl
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();