mirror of
https://github.com/friendica/friendica
synced 2024-11-09 23:02:54 +00:00
Merge pull request #7288 from annando/fix-search
Fix searching for contacts
This commit is contained in:
commit
b07490266c
1 changed files with 4 additions and 1 deletions
|
@ -50,8 +50,11 @@ class BaseSearchModule extends BaseModule
|
|||
$search = substr($search, 1);
|
||||
$type = Search::TYPE_PEOPLE;
|
||||
$header = L10n::t('People Search - %s', $search);
|
||||
|
||||
if (strrpos($search, '@') > 0) {
|
||||
$results = Search::getContactsFromProbe($search);
|
||||
}
|
||||
}
|
||||
|
||||
if (strpos($search, '!') === 0) {
|
||||
$search = substr($search, 1);
|
||||
|
|
Loading…
Reference in a new issue