aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/Render.pm
diff options
context:
space:
mode:
authorJoey Hess <joey@kodama.kitenet.net>2008-01-30 02:29:12 -0500
committerJoey Hess <joey@kodama.kitenet.net>2008-01-30 02:29:12 -0500
commit55e16be44a2aa1da578ef896ebac40095f606e15 (patch)
tree99919f8a43b56c30668aedca03f40dd18e30de52 /IkiWiki/Render.pm
parentddfa16145ac4c9938606104b685b382e2acd2f05 (diff)
downloadikiwiki-55e16be44a2aa1da578ef896ebac40095f606e15.tar
ikiwiki-55e16be44a2aa1da578ef896ebac40095f606e15.tar.gz
move recentchanges link enabling into a pagetemplate hook
Diffstat (limited to 'IkiWiki/Render.pm')
-rw-r--r--IkiWiki/Render.pm6
1 files changed, 0 insertions, 6 deletions
diff --git a/IkiWiki/Render.pm b/IkiWiki/Render.pm
index be5af84ba..6dc70beb5 100644
--- a/IkiWiki/Render.pm
+++ b/IkiWiki/Render.pm
@@ -85,12 +85,6 @@ sub genpage ($$) { #{{{
$actions++;
}
- if ($config{rcs} && exists $config{recentchangespage} &&
- $page ne $config{recentchangespage}) {
- $template->param(recentchangesurl => urlto($config{recentchangespage}, $page));
- $actions++;
- }
-
if (length $config{historyurl}) {
my $u=$config{historyurl};
$u=~s/\[\[file\]\]/$pagesources{$page}/g;