From 52600ce0b063e68e622b19699841e41b5ddbf2d1 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Tue, 20 May 2008 15:14:12 -0400 Subject: trim whitespace darcs-hash:20080520191412-84dde-a607dbe848279639630edd1ab4616d05cc2318d1.gz --- actions/unsubscribe.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'actions/unsubscribe.php') diff --git a/actions/unsubscribe.php b/actions/unsubscribe.php index 53a186036..bac752393 100644 --- a/actions/unsubscribe.php +++ b/actions/unsubscribe.php @@ -1,18 +1,18 @@ . */ @@ -30,22 +30,22 @@ class UnsubscribeAction extends Action { common_user_error(_t('No such user.')); return; } - + $user = common_current_user(); if (!$user->isSubscribed($other)) { common_server_error(_t('Not subscribed!.')); } - + $sub = new Subscription(); $sub->subscriber = $user->id; $sub->subscribed = $other->id; - + if (!$sub->delete()) { common_server_error(_t('Couldn\'t delete subscription.')); return; } - + common_redirect(common_local_url('all', array('nickname' => $user->nickname))); } -- cgit v1.2.3-54-g00ecf