X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Fsearchgroupnav.php;h=e843dc096ca408f8a7f008cffd50749357a1d26a;hb=509c8fc51589a4cc6a3281e012ce759ab9bed532;hp=4ea2266926e3aff115d8f65c9b5f43ef88ff509a;hpb=8ba19b0686bc4f616e506ab387eb287ae95226df;p=quix0rs-gnu-social.git diff --git a/lib/searchgroupnav.php b/lib/searchgroupnav.php index 4ea2266926..e843dc096c 100644 --- a/lib/searchgroupnav.php +++ b/lib/searchgroupnav.php @@ -1,6 +1,6 @@ . * * @category Menu - * @package Laconica - * @author Evan Prodromou - * @copyright 2008 Control Yourself, Inc. + * @package StatusNet + * @author Evan Prodromou + * @copyright 2008 StatusNet, Inc. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 - * @link http://laconi.ca/ + * @link http://status.net/ */ -if (!defined('LACONICA')) { +if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } @@ -37,10 +37,10 @@ require_once INSTALLDIR.'/lib/widget.php'; * Menu for public group of actions * * @category Output - * @package Laconica - * @author Evan Prodromou + * @package StatusNet + * @author Evan Prodromou * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 - * @link http://laconi.ca/ + * @link http://status.net/ * * @see Widget */ @@ -79,8 +79,10 @@ class SearchGroupNav extends Widget } $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', $args), _('Notice'), + $this->out->menuItem(common_local_url('noticesearch', $args), _('Notices'), _('Find content of notices'), $action_name == 'noticesearch', 'nav_search_notice'); + $this->out->menuItem(common_local_url('groupsearch', $args), _('Groups'), + _('Find groups on this site'), $action_name == 'groupsearch', 'nav_search_group'); $this->action->elementEnd('ul'); } }