diff options
author | Jakub Narebski <jnareb@gmail.com> | 2006-08-28 14:48:11 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-08-28 16:21:34 -0700 |
commit | d50a9398fe9428f94ec7f2081626cc49c938e704 (patch) | |
tree | bfc7ff457bf34259dd75c52af43d55f9536c60e2 /gitweb | |
parent | b7f9253df9bf351527f319d67bf67a95a4b8d79a (diff) | |
download | git-d50a9398fe9428f94ec7f2081626cc49c938e704.tar.gz git-d50a9398fe9428f94ec7f2081626cc49c938e704.tar.xz |
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 <jnareb@gmail.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'gitweb')
-rwxr-xr-x | gitweb/gitweb.perl | 1 |
1 files changed, 0 insertions, 1 deletions
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); } |