Query errors in Profile_tag

This commit is contained in:
Evan Prodromou 2011-09-27 11:32:05 -04:00
parent 8b35e69b34
commit 5ccae1313c
1 changed files with 8 additions and 8 deletions

View File

@ -100,13 +100,13 @@ class Profile_tag extends Managed_DataObject
{
$ptag = new Profile_tag();
$qry = sprint('select profile_tag.tag '.
'from profile_tag join profile_list '.
' on (profile_tag.tagger = profile_list.tagger ' .
' and profile_tag.tag = profile_list.tag) ' .
'where profile_tag.tagger = %d ' .
'and profile_tag.tagged = %d ',
$tagger, $tagged);
$qry = sprintf('select profile_tag.tag '.
'from profile_tag join profile_list '.
' on (profile_tag.tagger = profile_list.tagger ' .
' and profile_tag.tag = profile_list.tag) ' .
'where profile_tag.tagger = %d ' .
'and profile_tag.tagged = %d ',
$tagger, $tagged);
if ($auth_user_id != $tagger) {
$qry .= 'and profile_list.private = 0';
@ -114,7 +114,7 @@ class Profile_tag extends Managed_DataObject
$tags = array();
$ptag->query($sql);
$ptag->query($qry);
while ($ptag->fetch()) {
$tags[] = $ptag->tag;