aboutsummaryrefslogtreecommitdiff
path: root/gitweb
diff options
context:
space:
mode:
authorJakub Narebski <jnareb@gmail.com>2006-08-28 14:48:13 +0200
committerJunio C Hamano <junkio@cox.net>2006-08-28 16:21:35 -0700
commitfba20b429a45a682796214140a7e92fac52a3dbe (patch)
tree6c3913324a1c1dc73b390355cf7a765b38d57a14 /gitweb
parent6fd92a28ebfcbf5d0fc5b51653e223d4e2e727a6 (diff)
downloadgit-fba20b429a45a682796214140a7e92fac52a3dbe.tar.gz
git-fba20b429a45a682796214140a7e92fac52a3dbe.tar.xz
gitweb: git_print_log: signoff line is non-empty line
This correct minor error in git_print_log that didn't add final empty line when requested, if commit log ended with signoff. Signed-off-by: Jakub Narebski <jnareb@gmail.com> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'gitweb')
-rwxr-xr-xgitweb/gitweb.perl1
1 files changed, 1 insertions, 0 deletions
diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl
index 6d53c8b95..24c2fe2a1 100755
--- a/gitweb/gitweb.perl
+++ b/gitweb/gitweb.perl
@@ -1407,6 +1407,7 @@ sub git_print_log ($;%) {
foreach my $line (@$log) {
if ($line =~ m/^ *(signed[ \-]off[ \-]by[ :]|acked[ \-]by[ :]|cc[ :])/i) {
$signoff = 1;
+ $empty = 0;
if (! $opts{'-remove_signoff'}) {
print "<span class=\"signoff\">" . esc_html($line) . "</span><br/>\n";
next;