]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Make search actions retain their q values.
authorEvan Prodromou <evan@controlyourself.ca>
Fri, 23 Jan 2009 02:00:06 +0000 (03:00 +0100)
committerEvan Prodromou <evan@controlyourself.ca>
Fri, 23 Jan 2009 02:00:06 +0000 (03:00 +0100)
lib/searchaction.php
lib/searchgroupnav.php

index 71ab3a6ef5f1ad100b0c68b7ebfd12eea0c261b4..70e63146a61ee793e0acc6cf585541a955a2fac4 100644 (file)
@@ -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
     }
index 2a0f5a6ea279f26e96d37b57022a894bacce3027..4ea2266926e3aff115d8f65c9b5f43ef88ff509a 100644 (file)
@@ -48,6 +48,7 @@ require_once INSTALLDIR.'/lib/widget.php';
 class SearchGroupNav extends Widget
 {
     var $action = null;
+    var $q = null;
 
     /**
      * Construction
@@ -55,10 +56,11 @@ class SearchGroupNav extends Widget
      * @param Action $action current action, used for output
      */
 
-    function __construct($action=null)
+    function __construct($action=null, $q = null)
     {
         parent::__construct($action);
         $this->action = $action;
+        $this->q = $q;
     }
 
     /**
@@ -71,9 +73,13 @@ class SearchGroupNav extends Widget
     {
         $action_name = $this->action->trimmed('action');
         $this->action->elementStart('ul', array('class' => 'nav'));
-        $this->out->menuItem(common_local_url('peoplesearch'), _('People'),
+        $args = array();
+        if ($this->q) {
+            $args['q'] = $this->q;
+        }
+        $this->out->menuItem(common_local_url('peoplesearch', $args), _('People'),
             _('Find people on this site'), $action_name == 'peoplesearch', 'nav_search_people');
-        $this->out->menuItem(common_local_url('noticesearch'), _('Notice'),
+        $this->out->menuItem(common_local_url('noticesearch', $args), _('Notice'),
             _('Find content of notices'), $action_name == 'noticesearch', 'nav_search_notice');
         $this->action->elementEnd('ul');
     }