Merge pull request #10470 from annando/local-publish-search
Allow search for only locally published contacts
This commit is contained in:
commit
9126c2c454
|
@ -2989,7 +2989,8 @@ class Contact
|
|||
$search .= '%';
|
||||
|
||||
$results = DBA::p("SELECT * FROM `contact`
|
||||
WHERE NOT `unsearchable` AND `network` IN (?, ?, ?, ?) AND
|
||||
WHERE (NOT `unsearchable` OR `nurl` IN (SELECT `nurl` FROM `owner-view` where `publish` OR `net-publish`))
|
||||
AND `network` IN (?, ?, ?, ?) AND
|
||||
NOT `failed` AND `uid` = ? AND
|
||||
(`addr` LIKE ? OR `name` LIKE ? OR `nick` LIKE ?) $extra_sql
|
||||
ORDER BY `nurl` DESC LIMIT 1000",
|
||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user