]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
lost important fields when switching queries
authorEvan Prodromou <evan@status.net>
Mon, 1 Mar 2010 23:07:21 +0000 (18:07 -0500)
committerEvan Prodromou <evan@status.net>
Mon, 1 Mar 2010 23:07:21 +0000 (18:07 -0500)
lib/omb.php

index 0db178989c1ea6e5460ee65f6bae5833b411a53f..8bbe5e8aac22b39ed4a1651400bcfe995d0555c8 100644 (file)
@@ -77,7 +77,7 @@ function omb_broadcast_notice($notice)
     /* Get remote users subscribed to this profile. */
     $rp = new Remote_profile();
 
-    $rp->query('SELECT remote_profile.* ' .
+    $rp->query('SELECT remote_profile.*, secret, token ' .
                'FROM subscription JOIN remote_profile ' .
                'ON subscription.subscriber = remote_profile.id ' .
                'WHERE subscription.subscribed = ' . $notice->profile_id . ' ');
@@ -126,7 +126,7 @@ function omb_broadcast_profile($profile)
     /* Get remote users subscribed to this profile. */
     $rp = new Remote_profile();
 
-    $rp->query('SELECT remote_profile.* ' .
+    $rp->query('SELECT remote_profile.*, secret, token ' .
                'FROM subscription JOIN remote_profile ' .
                'ON subscription.subscriber = remote_profile.id ' .
                'WHERE subscription.subscribed = ' . $profile->id . ' ');