diff options
author | Simon McVittie <smcv@ http://smcv.pseudorandom.co.uk/> | 2009-01-31 23:01:10 +0000 |
---|---|---|
committer | Simon McVittie <smcv@ http://smcv.pseudorandom.co.uk/> | 2009-01-31 23:01:10 +0000 |
commit | c886bea32084a920f3ba26b3f96327681f5db917 (patch) | |
tree | 8227719f5d504056549abdef21963408124d7ccf /IkiWiki/Plugin/recentchanges.pm | |
parent | 46b880f8390ac82d746add01de38a05155743374 (diff) | |
download | ikiwiki-c886bea32084a920f3ba26b3f96327681f5db917.tar ikiwiki-c886bea32084a920f3ba26b3f96327681f5db917.tar.gz |
Split cgi_goto into a goto plugin
Diffstat (limited to 'IkiWiki/Plugin/recentchanges.pm')
-rw-r--r-- | IkiWiki/Plugin/recentchanges.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/IkiWiki/Plugin/recentchanges.pm b/IkiWiki/Plugin/recentchanges.pm index 56e80e7b8..329dd6f32 100644 --- a/IkiWiki/Plugin/recentchanges.pm +++ b/IkiWiki/Plugin/recentchanges.pm @@ -13,6 +13,8 @@ sub import { hook(type => "refresh", id => "recentchanges", call => \&refresh); hook(type => "pagetemplate", id => "recentchanges", call => \&pagetemplate); hook(type => "htmlize", id => "_change", call => \&htmlize); + # Load goto to fix up links from recentchanges + IkiWiki::loadplugin("goto"); } sub getsetup () { |