Profile search now matches username, not full profile URL #60

Merged
MrPetovan merged 2 commits from task/39-search-match-username into stable 2020-09-27 00:47:15 +02:00
Showing only changes of commit d6bf75ae04 - Show all commits

Update profile search request to match updated fulltext index definition

Hypolite Petovan 2020-09-26 18:32:43 -04:00

View file

@ -69,7 +69,7 @@ class Search extends BaseController
}
} else {
$sql_where = "MATCH (p.`name`, p.`pdesc`, p.`profile_url`, p.`locality`, p.`region`, p.`country`, p.`tags` )
$sql_where = "MATCH (p.`name`, p.`pdesc`, p.`username`, p.`locality`, p.`region`, p.`country`, p.`tags` )
AGAINST (:query IN BOOLEAN MODE)";
}