X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Frevokerole.php;h=b55399598eebd81c4e982de0b1d2d7ac71e4e0a9;hb=06f60b57c10c37fe6114ff09949b187e4cb2c964;hp=1218c9e923312ab5ab902eb6ef3aa50f99664c99;hpb=0dbdcf2936a00282114f1368ead2f5edebc6ae61;p=quix0rs-gnu-social.git diff --git a/actions/revokerole.php b/actions/revokerole.php index 1218c9e923..b55399598e 100644 --- a/actions/revokerole.php +++ b/actions/revokerole.php @@ -59,12 +59,10 @@ class RevokeRoleAction extends ProfileFormAction if (!Profile_role::isValid($this->role)) { // TRANS: Client error displayed when trying to revoke an invalid role. $this->clientError(_('Invalid role.')); - return false; } if (!Profile_role::isSettable($this->role)) { // TRANS: Client error displayed when trying to revoke a reserved role. $this->clientError(_('This role is reserved and cannot be set.')); - return false; } $cur = common_current_user(); @@ -74,7 +72,6 @@ class RevokeRoleAction extends ProfileFormAction if (!$cur->hasRight(Right::REVOKEROLE)) { // TRANS: Client error displayed when trying to revoke a role without having the right to do that. $this->clientError(_('You cannot revoke user roles on this site.')); - return false; } assert(!empty($this->profile)); // checked by parent @@ -82,7 +79,6 @@ class RevokeRoleAction extends ProfileFormAction if (!$this->profile->hasRole($this->role)) { // TRANS: Client error displayed when trying to revoke a role that is not set. $this->clientError(_('User does not have this role.')); - return false; } return true;