diff options
Diffstat (limited to 'doc/patchqueue')
-rw-r--r-- | doc/patchqueue/full_paths_in_recentchanges.mdwn | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/doc/patchqueue/full_paths_in_recentchanges.mdwn b/doc/patchqueue/full_paths_in_recentchanges.mdwn new file mode 100644 index 000000000..a42a2726b --- /dev/null +++ b/doc/patchqueue/full_paths_in_recentchanges.mdwn @@ -0,0 +1,15 @@ +For my own refrence --[[Joey]] + + Index: CGI.pm + =================================================================== + --- CGI.pm (revision 2225) + +++ CGI.pm (working copy) + @@ -92,7 +92,7 @@ + delete @{$change->{pages}}[10 .. @{$change->{pages}}] if $is_excess; + $change->{pages} = [ + map { + - $_->{link} = htmllink("", "", $_->{page}, 1); + + $_->{link} = htmllink("", "", $_->{page}, 1, 0, pagetitle($_->{page})); + $_; + } @{$change->{pages}} + ]; |