]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/blob - doc/patchqueue/full_paths_in_recentchanges.mdwn
fix broken format string, manual unfuzzy
[git.ikiwiki.info.git] / doc / patchqueue / full_paths_in_recentchanges.mdwn
1 For my own refrence --[[Joey]]
3         Index: CGI.pm
4         ===================================================================
5         --- CGI.pm      (revision 2225)
6         +++ CGI.pm      (working copy)
7         @@ -92,7 +92,7 @@
8                         delete @{$change->{pages}}[10 .. @{$change->{pages}}] if $is_excess;
9                         $change->{pages} = [
10                                 map {
11         -                               $_->{link} = htmllink("", "", $_->{page}, 1);
12         +                               $_->{link} = htmllink("", "", $_->{page}, 1, 0, pagetitle($_->{page}));
13                                         $_;
14                                 } @{$change->{pages}}
15                         ];