Merge pull request #4561 from MrPetovan/bug/fix-vier-messageto-select

Fix wrong SQL query syntax in Core\ACL
This commit is contained in:
Tobias Diekershoff 2018-03-08 11:18:56 +01:00 committed by GitHub
commit 1ab09dbcbf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -180,7 +180,7 @@ class ACL extends BaseObject
$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`
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
ORDER BY `name` ASC ", intval(local_user())
);

View File

@ -119,6 +119,6 @@ class Protocol
*/
public static function formatMention($profile_url, $display_name)
{
return $display_name . '(' . self::getAddrFromProfileUrl($profile_url) . ')';
return $display_name . ' (' . self::getAddrFromProfileUrl($profile_url) . ')';
}
}