From: Joey Hess Date: Wed, 18 Feb 2009 00:36:58 +0000 (-0500) Subject: goto: Fix redirect to comments. X-Git-Tag: 3.05~43 X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/commitdiff_plain/52f2235e6072bfb2e39a52bd8c106ae890ba4a5a goto: Fix redirect to comments. --- diff --git a/IkiWiki/Plugin/goto.pm b/IkiWiki/Plugin/goto.pm index 7cc8cb484..4fd1471e9 100644 --- a/IkiWiki/Plugin/goto.pm +++ b/IkiWiki/Plugin/goto.pm @@ -38,7 +38,7 @@ sub cgi_goto ($;$) { # permalink. Comments do. if (IkiWiki::isinternal($page) && defined $pagestate{$page}{meta}{permalink}) { - redirect($q, $pagestate{$page}{meta}{permalink}); + Ikiwiki::redirect($q, $pagestate{$page}{meta}{permalink}); } my $link = bestlink("", $page); diff --git a/debian/changelog b/debian/changelog index c28d36c84..b644ac99c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -5,6 +5,7 @@ ikiwiki (3.05) UNRELEASED; urgency=low This is potentially expensive, but is necessary so that meta and tag directives, and other links on templates affect the page using the template reliably. + * goto: Fix redirect to comments. -- Joey Hess Sun, 15 Feb 2009 20:11:57 -0500