X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Fgrantrole.php;h=35f0dcf961d02fc328466cc163f56fbec3407fd7;hb=38c84a92c71913fff570b64d21b7d2e07dfa3dd3;hp=36369a86002f3c89a13ddd1706661d7c6d2839d8;hpb=8eb66467165e107d0c80c64f6c429fed1d1101d5;p=quix0rs-gnu-social.git diff --git a/actions/grantrole.php b/actions/grantrole.php index 36369a8600..35f0dcf961 100644 --- a/actions/grantrole.php +++ b/actions/grantrole.php @@ -59,12 +59,10 @@ class GrantRoleAction extends ProfileFormAction if (!Profile_role::isValid($this->role)) { // TRANS: Client error displayed when trying to assign an invalid role to a user. $this->clientError(_('Invalid role.')); - return false; } if (!Profile_role::isSettable($this->role)) { // TRANS: Client error displayed when trying to assign an reserved role to a user. $this->clientError(_('This role is reserved and cannot be set.')); - return false; } $cur = common_current_user(); @@ -74,7 +72,6 @@ class GrantRoleAction extends ProfileFormAction if (!$cur->hasRight(Right::GRANTROLE)) { // TRANS: Client error displayed when trying to assign a role to a user while not being allowed to set roles. $this->clientError(_('You cannot grant user roles on this site.')); - return false; } assert(!empty($this->profile)); // checked by parent @@ -82,7 +79,6 @@ class GrantRoleAction extends ProfileFormAction if ($this->profile->hasRole($this->role)) { // TRANS: Client error displayed when trying to assign a role to a user that already has that role. $this->clientError(_('User already has this role.')); - return false; } return true;