From: Evan Prodromou Date: Tue, 27 Sep 2011 14:47:13 +0000 (-0400) Subject: missed an AND X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=707f90d0127e2c994f38d0708e7c829f9b26c2d0;p=quix0rs-gnu-social.git missed an AND --- diff --git a/classes/Profile_tag.php b/classes/Profile_tag.php index c9f8d96713..0d90d4da14 100644 --- a/classes/Profile_tag.php +++ b/classes/Profile_tag.php @@ -86,7 +86,7 @@ class Profile_tag extends Managed_DataObject $qry = sprintf($qry, $tagger, $tagged); if (!$include_priv) { - $qry .= 'profile_list.private = 0'; + $qry .= ' and profile_list.private = 0'; } $profile_list->query($qry);