diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-12-04 10:50:46 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-12-04 10:50:46 +0000 |
commit | c0cf13dbb064f354eb84430d10747fc0b454f408 (patch) | |
tree | 1a9bd69d0df1539493edb59c760191739d9ff95f | |
parent | 94cdfe202bf0d95562a1d3a55d061db07ea207cb (diff) | |
download | ikiwiki-c0cf13dbb064f354eb84430d10747fc0b454f408.tar ikiwiki-c0cf13dbb064f354eb84430d10747fc0b454f408.tar.gz |
* Fix various links on the hyperestradier pages.
-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 |