aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-01-14 04:30:53 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-01-14 04:30:53 +0000
commitc4b171221279d358b1aee1468e7d8d98b923af8c (patch)
treefd906816dabf7b6e95259865106f2243a1d4525c /IkiWiki
parentd253cef179bbe1c268a9b4bbf5f08324915b46e3 (diff)
downloadikiwiki-c4b171221279d358b1aee1468e7d8d98b923af8c.tar
ikiwiki-c4b171221279d358b1aee1468e7d8d98b923af8c.tar.gz
* Change the RecentChanges page to show the path of changed pages.
Diffstat (limited to 'IkiWiki')
-rw-r--r--IkiWiki/CGI.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/CGI.pm b/IkiWiki/CGI.pm
index 71a3299a4..96b9dab61 100644
--- a/IkiWiki/CGI.pm
+++ b/IkiWiki/CGI.pm
@@ -92,7 +92,7 @@ sub cgi_recentchanges ($) { #{{{
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}}
];