aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoey Hess <joey@gnu.kitenet.net>2009-02-17 19:36:58 -0500
committerJoey Hess <joey@gnu.kitenet.net>2009-02-17 19:36:58 -0500
commit52f2235e6072bfb2e39a52bd8c106ae890ba4a5a (patch)
treef55add932b8958bea0fa47645a6a87e65285e2a5
parent9acc4d578d7468ebb54a02377e571c89bb76ad9b (diff)
downloadikiwiki-52f2235e6072bfb2e39a52bd8c106ae890ba4a5a.tar
ikiwiki-52f2235e6072bfb2e39a52bd8c106ae890ba4a5a.tar.gz
goto: Fix redirect to comments.
-rw-r--r--IkiWiki/Plugin/goto.pm2
-rw-r--r--debian/changelog1
2 files changed, 2 insertions, 1 deletions
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 <joeyh@debian.org> Sun, 15 Feb 2009 20:11:57 -0500