You shoudln't use a text variable like an array.
This commit is contained in:
parent
5e1c303c08
commit
e9b083d13d
|
@ -904,10 +904,10 @@ function contact_block() {
|
||||||
intval($shown)
|
intval($shown)
|
||||||
);
|
);
|
||||||
if (dbm::is_result($r)) {
|
if (dbm::is_result($r)) {
|
||||||
$contacts = "";
|
$contacts = array();
|
||||||
foreach ($r AS $contact)
|
foreach ($r AS $contact) {
|
||||||
$contacts[] = $contact["id"];
|
$contacts[] = $contact["id"];
|
||||||
|
}
|
||||||
$r = q("SELECT `id`, `uid`, `addr`, `url`, `name`, `thumb`, `network` FROM `contact` WHERE `id` IN (%s)",
|
$r = q("SELECT `id`, `uid`, `addr`, `url`, `name`, `thumb`, `network` FROM `contact` WHERE `id` IN (%s)",
|
||||||
dbesc(implode(",", $contacts)));
|
dbesc(implode(",", $contacts)));
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue