From ab1f2ff9d07088c7a3607ee6d05b1042d735960d Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Tue, 22 Jul 2008 10:41:54 -0400 Subject: every user is subscribed to themselves darcs-hash:20080722144154-84dde-80beabad9a681f2e12edb34ceb4ac249f4ce6705.gz --- actions/register.php | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'actions/register.php') diff --git a/actions/register.php b/actions/register.php index 0832b0847..6ac283059 100644 --- a/actions/register.php +++ b/actions/register.php @@ -159,6 +159,20 @@ class RegisterAction extends Action { return FALSE; } + # Everyone is subscribed to themself + + $subscription = new Subscription(); + $subscription->subscriber = $user->id; + $subscription->subscribed = $user->id; + $subscription->created = $user->created; + + $result = $subscription->insert(); + + if (!$result) { + common_log_db_error($subscription, 'INSERT', __FILE__); + return FALSE; + } + if ($email) { $confirm = new Confirm_address(); -- cgit v1.2.3-54-g00ecf