diff options
Diffstat (limited to 'actions/block.php')
-rw-r--r-- | actions/block.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/actions/block.php b/actions/block.php index e6d2b7e49..20ba81edb 100644 --- a/actions/block.php +++ b/actions/block.php @@ -32,12 +32,12 @@ class BlockAction extends Action { return false; } - $token = $this->trimmed('token'); + $token = $this->trimmed('token'); - if (!$token || $token != common_session_token()) { - $this->client_error(_('There was a problem with your session token. Try again, please.')); - return; - } + if (!$token || $token != common_session_token()) { + $this->client_error(_('There was a problem with your session token. Try again, please.')); + return; + } $id = $this->trimmed('blockto'); @@ -75,7 +75,7 @@ class BlockAction extends Action { $id = $this->profile->id; - common_show_header(_('Block user')); + common_show_header(_('Block user')); common_element('p', NULL, _('Are you sure you want to block this user? '. |