Merge pull request #2235 from annando/1601-bugfix-sql-api

Bugfix: The table name was wrong
This commit is contained in:
Tobias Diekershoff 2016-01-03 08:37:39 +01:00
commit 2b5366ce15
1 changed files with 1 additions and 1 deletions

View File

@ -2596,7 +2596,7 @@
$stringify_ids = (x($_REQUEST,'stringify_ids')?$_REQUEST['stringify_ids']:false);
$r = q("SELECT `unique_contact`.`id` FROM contact, `unique_contacts` WHERE contact.nurl = unique_contacts.url AND `uid` = %d AND `self` = 0 AND `blocked` = 0 AND `pending` = 0 $sql_extra",
$r = q("SELECT `unique_contacts`.`id` FROM `contact`, `unique_contacts` WHERE `contact`.`nurl` = `unique_contacts`.`url` AND `uid` = %d AND NOT `self` AND NOT `blocked` AND NOT `pending` $sql_extra",
intval(api_user())
);