]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/blobdiff - IkiWiki/Rcs/git.pm
* Don't truncate git commit messages to the first line in RecentChanges,
[git.ikiwiki.info.git] / IkiWiki / Rcs / git.pm
index 68b573fb9a379e2a3451f39860ec8ab77d26fbea..a1e06c51ce4973c7e0e386a8886ad033728b0bbc 100644 (file)
@@ -366,7 +366,7 @@ sub rcs_recentchanges ($) { #{{{
 
        my @rets;
        foreach my $ci (git_commit_info('HEAD', $num)) {
-               my $title = @{ $ci->{'comment'} }[0];
+               my $title = join("\n", @{$ci->{'comment'}});
 
                # Skip redundant commits.
                next if ($title eq $dummy_commit_msg);