diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-06-06 00:34:05 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-06-06 00:34:05 -0400 |
commit | 49111ecae8bb6c0570a8ab0bd5ba5488435b2969 (patch) | |
tree | cd206a788f09171439083f124d6e915d36c2f1dd /actions | |
parent | 87cf04255a0ccd9c0208dd2de00ab4bd161b5074 (diff) |
listenee is nickname, not URI
darcs-hash:20080606043405-84dde-e365fd5a897990c446a4156ed3582081949fd891.gz
Diffstat (limited to 'actions')
-rw-r--r-- | actions/finishremotesubscribe.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/finishremotesubscribe.php b/actions/finishremotesubscribe.php index d48ba0a62..7a2fc11d2 100644 --- a/actions/finishremotesubscribe.php +++ b/actions/finishremotesubscribe.php @@ -81,7 +81,7 @@ class FinishremotesubscribeAction extends Action { common_debug('listenee: "'.$omb['listenee'].'"', __FILE__); - $user = User::staticGet('uri', $omb['listenee']); + $user = User::staticGet('nickname', $omb['listenee']); if (!$user) { common_user_error(_t('User being listened to doesn\'t exist.')); |