From 87b494f1ebbe7640d194ef322af12fdf378295df Mon Sep 17 00:00:00 2001 From: Mike Cochrane Date: Tue, 8 Jul 2008 05:45:31 -0400 Subject: Convert _t() to _() for gettext. darcs-hash:20080708094531-533db-83399a46e6ec4c0fcc6249b0235961f969d1ae73.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 1bf95fb61..0c66946b2 100644 --- a/actions/unsubscribe.php +++ b/actions/unsubscribe.php @@ -21,39 +21,39 @@ class UnsubscribeAction extends Action { function handle($args) { parent::handle($args); if (!common_logged_in()) { - common_user_error(_t('Not logged in.')); + common_user_error(_('Not logged in.')); return; } - + $user = common_current_user(); if ($_SERVER['REQUEST_METHOD'] != 'POST') { common_redirect(common_local_url('subscriptions', array('nickname' => $user->nickname))); return; } - + $other_nickname = $this->arg('unsubscribeto'); $other = User::staticGet('nickname', $other_nickname); if (!$other) { - common_user_error(_t('No such user.')); + common_user_error(_('No such user.')); return; } if (!$user->isSubscribed($other)) { - common_server_error(_t('Not subscribed!.')); + common_server_error(_('Not subscribed!.')); } $sub = DB_DataObject::factory('subscription'); - + $sub->subscriber = $user->id; $sub->subscribed = $other->id; $sub->find(true); // note we checked for existence above - + if (!$sub->delete()) { - common_server_error(_t('Couldn\'t delete subscription.')); + common_server_error(_('Couldn\'t delete subscription.')); return; } -- cgit v1.2.3-54-g00ecf