X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Fgroupaction.php;h=b1a5d771979caf5c432882ada033e0eddedd3d8c;hb=3f28b17c86c4cd88d4f39629ea8a89ec3a820790;hp=0e2867fba890170882b62c1a22a90489db525c88;hpb=c0f65f6ea76ffa035cbf2c4126bedaae9d8752c8;p=quix0rs-gnu-social.git diff --git a/lib/groupaction.php b/lib/groupaction.php index 0e2867fba8..b1a5d77197 100644 --- a/lib/groupaction.php +++ b/lib/groupaction.php @@ -61,13 +61,11 @@ class GroupAction extends Action $args['page'] = $this->page; } common_redirect(common_local_url('showgroup', $args), 301); - return false; } if (!$nickname) { // TRANS: Client error displayed if no nickname argument was given requesting a group page. $this->clientError(_('No nickname.'), 404); - return false; } $local = Local_group::getKV('nickname', $nickname); @@ -80,12 +78,10 @@ class GroupAction extends Action $args['page'] = $this->page; } common_redirect(common_local_url('groupbyid', $args), 301); - return false; } else { common_log(LOG_NOTICE, "Couldn't find local group for nickname '$nickname'"); // TRANS: Client error displayed if no remote group with a given name was found requesting group page. $this->clientError(_('No such group.'), 404); - return false; } } @@ -94,7 +90,6 @@ class GroupAction extends Action if (!$this->group) { // TRANS: Client error displayed if no local group with a given name was found requesting group page. $this->clientError(_('No such group.'), 404); - return false; } } @@ -289,6 +284,11 @@ class GroupAction extends Action return $options; } + + function getGroup() + { + return $this->group; + } } class GroupAdminSection extends ProfileSection @@ -325,7 +325,7 @@ class GroupAdminSection extends ProfileSection class GroupMembersMiniList extends ProfileMiniList { - function newListItem($profile) + function newListItem(Profile $profile) { return new GroupMembersMiniListItem($profile, $this->action); } @@ -347,7 +347,7 @@ class GroupMembersMiniListItem extends ProfileMiniListItem class GroupBlockedMiniList extends ProfileMiniList { - function newListItem($profile) + function newListItem(Profile $profile) { return new GroupBlockedMiniListItem($profile, $this->action); }