diff options
author | Junio C Hamano <gitster@pobox.com> | 2008-09-18 20:30:12 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-09-18 20:30:12 -0700 |
commit | 3791f77c28f233df121da2f83abf7eefc7b49b69 (patch) | |
tree | 8c50a58cf599933aa412a30d7cac615092d42aa0 /gitweb | |
parent | Merge branch 'jc/diff-prefix' (diff) | |
parent | Merge branch 'dp/maint-rebase-fix' into maint (diff) | |
download | tgif-3791f77c28f233df121da2f83abf7eefc7b49b69.tar.xz |
Merge branch 'maint'
* maint:
sha1_file: link() returns -1 on failure, not errno
Make git archive respect core.autocrlf when creating zip format archives
Add new test to demonstrate git archive core.autocrlf inconsistency
gitweb: avoid warnings for commits without body
Clarified gitattributes documentation regarding custom hunk header.
git-svn: fix handling of even funkier branch names
git-svn: Always create a new RA when calling do_switch for svn://
git-svn: factor out svnserve test code for later use
diff/diff-files: do not use --cc too aggressively
Diffstat (limited to 'gitweb')
-rwxr-xr-x | gitweb/gitweb.perl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl index 29e21564c8..da474d082c 100755 --- a/gitweb/gitweb.perl +++ b/gitweb/gitweb.perl @@ -2123,7 +2123,7 @@ sub parse_commit_text { last; } } - if ($co{'title'} eq "") { + if (! defined $co{'title'} || $co{'title'} eq "") { $co{'title'} = $co{'title_short'} = '(no commit message)'; } # remove added spaces |