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

View file

@ -69,7 +69,7 @@ class Search extends BaseController
} }
} else { } 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)"; AGAINST (:query IN BOOLEAN MODE)";
} }