summaryrefslogtreecommitdiff
path: root/actions/unsubscribe.php
diff options
context:
space:
mode:
authorMike Cochrane <mikec@mikenz.geek.nz>2008-07-08 05:45:31 -0400
committerMike Cochrane <mikec@mikenz.geek.nz>2008-07-08 05:45:31 -0400
commit87b494f1ebbe7640d194ef322af12fdf378295df (patch)
treef4b616fd8306bb92d3063d4e86dd1b87607163f4 /actions/unsubscribe.php
parenta25f5010e682a0fc950e2ef2476af7b631ada5bf (diff)
Convert _t() to _() for gettext.
darcs-hash:20080708094531-533db-83399a46e6ec4c0fcc6249b0235961f969d1ae73.gz
Diffstat (limited to 'actions/unsubscribe.php')
-rw-r--r--actions/unsubscribe.php16
1 files changed, 8 insertions, 8 deletions
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;
}