diff options
author | Jakub Narebski <jnareb@gmail.com> | 2006-08-28 14:48:13 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-08-28 16:21:35 -0700 |
commit | fba20b429a45a682796214140a7e92fac52a3dbe (patch) | |
tree | 6c3913324a1c1dc73b390355cf7a765b38d57a14 /gitweb/gitweb.perl | |
parent | gitweb: Add author information to commitdiff view (diff) | |
download | tgif-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/gitweb.perl')
-rwxr-xr-x | gitweb/gitweb.perl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl index 6d53c8b956..24c2fe2a1b 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; |