X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Funsandbox.php;h=98bd2d4f54761f981898dc45f4bfa9ff73d6b57a;hb=c97048d01bea468e0cf8865b60c3c250b4515c39;hp=22f4d8e766e7f35f0802b3d61af02ad43016bac2;hpb=6a1afda259c5223449f679a64f932e36df5ebe39;p=quix0rs-gnu-social.git diff --git a/actions/unsandbox.php b/actions/unsandbox.php index 22f4d8e766..98bd2d4f54 100644 --- a/actions/unsandbox.php +++ b/actions/unsandbox.php @@ -40,7 +40,6 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 * @link http://status.net/ */ - class UnsandboxAction extends ProfileFormAction { /** @@ -50,7 +49,6 @@ class UnsandboxAction extends ProfileFormAction * * @return boolean success flag */ - function prepare($args) { if (!parent::prepare($args)) { @@ -62,14 +60,16 @@ class UnsandboxAction extends ProfileFormAction assert(!empty($cur)); // checked by parent if (!$cur->hasRight(Right::SANDBOXUSER)) { - $this->clientError(_("You cannot sandbox users on this site.")); + // TRANS: Client error on page to unsandbox a user when the feature is not enabled. + $this->clientError(_('You cannot sandbox users on this site.')); return false; } assert(!empty($this->profile)); // checked by parent if (!$this->profile->isSandboxed()) { - $this->clientError(_("User is not sandboxed.")); + // TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. + $this->clientError(_('User is not sandboxed.')); return false; } @@ -81,7 +81,6 @@ class UnsandboxAction extends ProfileFormAction * * @return void */ - function handlePost() { $this->profile->unsandbox();