diff options
-rw-r--r-- | IkiWiki/Plugin/search.pm | 2 | ||||
-rw-r--r-- | debian/changelog | 6 |
2 files changed, 7 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/search.pm b/IkiWiki/Plugin/search.pm index 3cfc301e2..942b94986 100644 --- a/IkiWiki/Plugin/search.pm +++ b/IkiWiki/Plugin/search.pm @@ -74,7 +74,7 @@ sub change (@) { #{{{ sub cgi ($) { #{{{ my $cgi=shift; - if (defined $cgi->param('phrase')) { + if (defined $cgi->param('phrase') || defined $cgi->param("navi")) { # only works for GET requests chdir("$config{wikistatedir}/hyperestraier") || error("chdir: $!"); exec("./".IkiWiki::basename($config{cgiurl})) || error("estseek.cgi failed"); diff --git a/debian/changelog b/debian/changelog index 60a713251..b2cc9c725 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +ikiwiki (1.36) UNRELEASED; urgency=low + + * Fix various links on the hyperestradier pages. + + -- Joey Hess <joeyh@debian.org> Mon, 4 Dec 2006 11:50:27 +0100 + ikiwiki (1.35) unstable; urgency=low * Fix daemonisation code to only do daemon setup things after forking the |