]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Bug fix, wrong action urls.
authorRobin Millette <millette@plantard.controlezvous.ca>
Thu, 22 Jan 2009 20:48:54 +0000 (20:48 +0000)
committerRobin Millette <millette@plantard.controlezvous.ca>
Thu, 22 Jan 2009 20:48:54 +0000 (20:48 +0000)
lib/searchgroupnav.php

index 8ca5dd20092e9a840552b934b9dfdaf303476eb8..2a0f5a6ea279f26e96d37b57022a894bacce3027 100644 (file)
@@ -71,9 +71,9 @@ class SearchGroupNav extends Widget
     {
         $action_name = $this->action->trimmed('action');
         $this->action->elementStart('ul', array('class' => 'nav'));
-        $this->out->menuItem(common_local_url('people'), _('People'),
+        $this->out->menuItem(common_local_url('peoplesearch'), _('People'),
             _('Find people on this site'), $action_name == 'peoplesearch', 'nav_search_people');
-        $this->out->menuItem(common_local_url('notice'), _('Notice'),
+        $this->out->menuItem(common_local_url('noticesearch'), _('Notice'),
             _('Find content of notices'), $action_name == 'noticesearch', 'nav_search_notice');
         $this->action->elementEnd('ul');
     }