mirror of
https://github.com/friendica/friendica
synced 2024-11-10 05:42:54 +00:00
Remove extraneous SQL condition part in mod/unfollow
This commit is contained in:
parent
62c5e5d861
commit
9de0d35450
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ function unfollow_post()
|
|||
$uid = local_user();
|
||||
$url = notags(trim(defaults($_REQUEST, 'url', '')));
|
||||
|
||||
$condition = ["`uid` = ? AND (`rel` = ? OR `rel` = ?) AND (`nurl` = ? OR `alias` = ? OR `alias` = ?) AND `network` != ?",
|
||||
$condition = ["`uid` = ? AND (`rel` = ? OR `rel` = ?) AND (`nurl` = ? OR `alias` = ? OR `alias` = ?)",
|
||||
$uid, Contact::SHARING, Contact::FRIEND, normalise_link($url),
|
||||
normalise_link($url), $url];
|
||||
$contact = DBA::selectFirst('contact', [], $condition);
|
||||
|
|
Loading…
Reference in a new issue