X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Fgroupmembers.php;h=088b171956f560464b33e41085516b7c996f0cc2;hb=09b80a6e90aa6313704577d7bd6f0df7c803ba9b;hp=2bb35ceddc7eada48df9c5573895a0c135f029b2;hpb=0dbdcf2936a00282114f1368ead2f5edebc6ae61;p=quix0rs-gnu-social.git diff --git a/actions/groupmembers.php b/actions/groupmembers.php index 2bb35ceddc..088b171956 100644 --- a/actions/groupmembers.php +++ b/actions/groupmembers.php @@ -43,7 +43,7 @@ require_once INSTALLDIR.'/lib/publicgroupnav.php'; * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ -class GroupmembersAction extends GroupDesignAction +class GroupmembersAction extends GroupAction { var $page = null; @@ -55,43 +55,8 @@ class GroupmembersAction extends GroupDesignAction function prepare($args) { parent::prepare($args); - $this->page = ($this->arg('page')) ? ($this->arg('page')+0) : 1; - - $nickname_arg = $this->arg('nickname'); - $nickname = common_canonical_nickname($nickname_arg); - - // Permanent redirect on non-canonical nickname - - if ($nickname_arg != $nickname) { - $args = array('nickname' => $nickname); - if ($this->page != 1) { - $args['page'] = $this->page; - } - common_redirect(common_local_url('groupmembers', $args), 301); - return false; - } - - if (!$nickname) { - // TRANS: Client error displayed when trying to view group members without providing a group nickname. - $this->clientError(_('No nickname.'), 404); - return false; - } - - $local = Local_group::staticGet('nickname', $nickname); - if (!$local) { - // TRANS: Client error displayed when trying to view group members for a non-existing group. - $this->clientError(_('No such group.'), 404); - return false; - } - - $this->group = User_group::staticGet('id', $local->group_id); - - if (!$this->group) { - // TRANS: Client error displayed when trying to view group members for an object that is not a group. - $this->clientError(_('No such group.'), 404); - return false; - } + $this->page = ($this->arg('page')) ? ($this->arg('page')+0) : 1; return true; } @@ -125,12 +90,6 @@ class GroupmembersAction extends GroupDesignAction _('A list of the users in this group.')); } - function showObjectNav() - { - $nav = new GroupNav($this, $this->group); - $nav->show(); - } - function showContent() { $offset = ($this->page-1) * PROFILES_PER_PAGE;