]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
include q as param, not arg for search sub menu
authorEvan Prodromou <evan@status.net>
Thu, 15 Sep 2011 15:00:27 +0000 (11:00 -0400)
committerEvan Prodromou <evan@status.net>
Thu, 15 Sep 2011 15:00:27 +0000 (11:00 -0400)
plugins/SearchSub/searchsubmenu.php

index 755a3c9a5b121877300e6ce323e78b4fa02bd6b7..5973eb8b93af25be4dd5031b22d07dee98efa6c0 100644 (file)
@@ -85,4 +85,23 @@ class SearchSubMenu extends MoreMenu
 
         return $items;
     } 
+
+    function item($actionName, $args, $label, $description, $id=null, $cls=null)
+    {
+        if (empty($id)) {
+            $id = $this->menuItemID($actionName, $args);
+        }
+
+        // Add 'q' as a search param, not part of the url path
+
+        $url = common_local_url($actionName, array(), $args);
+
+        $this->out->menuItem($url,
+                             $label,
+                             $description,
+                             $this->isCurrent($actionName, $args),
+                             $id,
+                             $cls);
+    }
 }
+