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
1 changed files with 1 additions and 1 deletions
Showing only changes of commit d6bf75ae04 - Show all commits

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)";
}