diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-01-23 03:00:06 +0100 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-01-23 03:00:06 +0100 |
commit | cafc51db093daa652912cd85fe7b40aac26a272d (patch) | |
tree | 9e24a1c3b408b63dd1e9bd7b5603211426de204a /lib/searchaction.php | |
parent | df543734111431b175e6c0ac41043d7a812c20a3 (diff) |
Make search actions retain their q values.
Diffstat (limited to 'lib/searchaction.php')
-rw-r--r-- | lib/searchaction.php | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/lib/searchaction.php b/lib/searchaction.php index 71ab3a6ef..70e63146a 100644 --- a/lib/searchaction.php +++ b/lib/searchaction.php @@ -73,7 +73,7 @@ class SearchAction extends Action function showLocalNav() { - $nav = new SearchGroupNav($this); + $nav = new SearchGroupNav($this, $this->trimmed('q')); $nav->show(); } @@ -98,11 +98,6 @@ class SearchAction extends Action return null; } - function show_header($arr) - { - return; - } - function showNoticeForm() { // remote post notice form } |