diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2008-12-07 22:13:12 -0500 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2008-12-07 22:13:12 -0500 |
commit | fd6df5402e4e2d6bfb842c970f193250b0a371bd (patch) | |
tree | 12b8b1bc65552ba818a42bc5f126996ab9126410 /actions/subscribe.php | |
parent | 81a81baf8374df7823b659c87b1d93e2a1a55c20 (diff) |
pass profile id for subscriptions rather than user name
darcs-hash:20081208031312-5ed1f-b570b86b28e8eda763c51be1ae091034f76bd984.gz
Diffstat (limited to 'actions/subscribe.php')
-rw-r--r-- | actions/subscribe.php | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/actions/subscribe.php b/actions/subscribe.php index c06057fb8..871b34f31 100644 --- a/actions/subscribe.php +++ b/actions/subscribe.php @@ -20,7 +20,7 @@ if (!defined('LACONICA')) { exit(1); } class SubscribeAction extends Action { - + function handle($args) { parent::handle($args); @@ -39,16 +39,23 @@ class SubscribeAction extends Action { # CSRF protection $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; } - $other_nickname = $this->arg('subscribeto'); + $other_id = $this->arg('subscribeto'); + + $other = User::staticGet('id', $other_id); + + if (!$other) { + $this->client_error(_('Not a local user.')); + return; + } + + $result = subs_subscribe_to($user, $other); - $result=subs_subscribe_user($user, $other_nickname); - if($result != true) { common_user_error($result); return; |