diff options
Diffstat (limited to 'actions/apiblockdestroy.php')
-rw-r--r-- | actions/apiblockdestroy.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/apiblockdestroy.php b/actions/apiblockdestroy.php index b69907784..7dd0859e9 100644 --- a/actions/apiblockdestroy.php +++ b/actions/apiblockdestroy.php @@ -55,7 +55,6 @@ class ApiBlockDestroyAction extends ApiAuthAction * @param array $args $_REQUEST args * * @return boolean success flag - * */ function prepare($args) { @@ -91,6 +90,7 @@ class ApiBlockDestroyAction extends ApiAuthAction } if (empty($this->user) || empty($this->other)) { + // TRANS: Client error when user not found for an API action to remove a block for a user. $this->clientError(_('No such user.'), 404, $this->format); return; } |