From: Jakub Narebski Date: Tue, 24 Oct 2006 11:55:33 +0000 (+0200) Subject: gitweb: Print commit message without title in commitdiff only if there is any X-Git-Tag: v1.4.4-rc1~67^2 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/82560983997c961d9deafe0074b787c8484c2e1d?hp=--cc gitweb: Print commit message without title in commitdiff only if there is any Print the rest of commit message (title, i.e. first line of commit message, is printed separately) only if there is any. In repository which uses signoffs this shouldn't happen, because commit message should consist of at least title and signoff. Signed-off-by: Jakub Narebski Signed-off-by: Junio C Hamano --- 82560983997c961d9deafe0074b787c8484c2e1d diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl index 2bc14b2c2a..c82fc6268b 100755 --- a/gitweb/gitweb.perl +++ b/gitweb/gitweb.perl @@ -3428,9 +3428,11 @@ sub git_commitdiff { git_print_header_div('commit', esc_html($co{'title'}) . $ref, $hash); git_print_authorship(\%co); print "
\n"; - print "
\n"; - git_print_log($co{'comment'}, -final_empty_line=> 1, -remove_title => 1); - print "
\n"; # class="log" + if (@{$co{'comment'}} > 1) { + print "
\n"; + git_print_log($co{'comment'}, -final_empty_line=> 1, -remove_title => 1); + print "
\n"; # class="log" + } } elsif ($format eq 'plain') { my $refs = git_get_references("tags");