From: Jakub Narebski Date: Mon, 28 Aug 2006 12:48:11 +0000 (+0200) Subject: gitweb: Do not remove signoff lines in git_print_simplified_log X-Git-Tag: v1.4.3-rc1~164 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=d50a9398fe9428f94ec7f2081626cc49c938e704;p=git.git gitweb: Do not remove signoff lines in git_print_simplified_log Remove '-remove_signoff => 1' option to git_print_log call in the git_print_simplified_log subroutine. This means that in "log" and "commitdiff" views (git_log and git_commitdiff subroutines) signoff lines will be shown. Signed-off-by: Jakub Narebski Signed-off-by: Junio C Hamano --- diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl index ba21a4770..d191ef1ee 100755 --- a/gitweb/gitweb.perl +++ b/gitweb/gitweb.perl @@ -1432,7 +1432,6 @@ sub git_print_simplified_log { git_print_log($log, -final_empty_line=> 1, - -remove_signoff => 1, -remove_title => $remove_title); }