Fix to regression for auto-subscribe - was backwards.

This commit is contained in:
Brion Vibber 2010-03-17 12:14:19 -07:00
parent 6828567ed0
commit dacd0f3e6d
1 changed files with 2 additions and 2 deletions

View File

@ -105,8 +105,8 @@ class Subscription extends Memcached_DataObject
$auto = new Subscription();
$auto->subscriber = $subscriber->id;
$auto->subscribed = $other->id;
$auto->subscriber = $other->id;
$auto->subscribed = $subscriber->id;
$auto->created = common_sql_now();
$result = $auto->insert();