diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2008-12-08 02:17:20 -0500 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2008-12-08 02:17:20 -0500 |
commit | 96128353d0b1cf71d4caac38c97ab8a2f08b0282 (patch) | |
tree | 775f109613be9ad2dfb163120310337e63fb0097 /actions | |
parent | 49adb8b552b5dc0fc07298649466e1a71cebd661 (diff) |
return true from block action
darcs-hash:20081208071720-5ed1f-82ff38a26edc9254883bd22e055b7a883b07081c.gz
Diffstat (limited to 'actions')
-rw-r--r-- | actions/block.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/actions/block.php b/actions/block.php index 977385ead..19a5c63d4 100644 --- a/actions/block.php +++ b/actions/block.php @@ -52,6 +52,8 @@ class BlockAction extends Action { $this->client_error(_('No profile with that ID.')); return false; } + + return true; } function handle($args) { |