Fix wrong SQL query syntax in Core\ACL
This commit is contained in:
parent
e2fd882134
commit
49bd2903c7
|
@ -180,7 +180,7 @@ class ACL extends BaseObject
|
||||||
$o .= "<select name=\"$selname\" id=\"$selclass\" class=\"$selclass\" size=\"$size\"$tabindex_attr$hidepreselected>\r\n";
|
$o .= "<select name=\"$selname\" id=\"$selclass\" class=\"$selclass\" size=\"$size\"$tabindex_attr$hidepreselected>\r\n";
|
||||||
|
|
||||||
$stmt = dba::p("SELECT `id`, `name`, `url`, `network` FROM `contact`
|
$stmt = dba::p("SELECT `id`, `name`, `url`, `network` FROM `contact`
|
||||||
WHERE `uid` = %d AND NOT `self` AND NOT `blocked` AND NOT `pending` AND NOT `archive` AND `notify` != ''
|
WHERE `uid` = ? AND NOT `self` AND NOT `blocked` AND NOT `pending` AND NOT `archive` AND `notify` != ''
|
||||||
$sql_extra
|
$sql_extra
|
||||||
ORDER BY `name` ASC ", intval(local_user())
|
ORDER BY `name` ASC ", intval(local_user())
|
||||||
);
|
);
|
||||||
|
|
|
@ -119,6 +119,6 @@ class Protocol
|
||||||
*/
|
*/
|
||||||
public static function formatMention($profile_url, $display_name)
|
public static function formatMention($profile_url, $display_name)
|
||||||
{
|
{
|
||||||
return $display_name . '(' . self::getAddrFromProfileUrl($profile_url) . ')';
|
return $display_name . ' (' . self::getAddrFromProfileUrl($profile_url) . ')';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue