mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-12-25 22:12:45 +03:00
don't use tokens from country parameter in address field of searches
fixes #218
This commit is contained in:
parent
b121da0ca3
commit
d1552b0904
@ -611,7 +611,10 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
if (isset($aValidTokens[$sToken]))
|
||||
// Look for partial matches.
|
||||
// Note that there is no point in adding country terms here
|
||||
// because country are omitted in the address.
|
||||
if (isset($aValidTokens[$sToken]) && $sPhraseType != 'country')
|
||||
{
|
||||
// Allow searching for a word - but at extra cost
|
||||
foreach($aValidTokens[$sToken] as $aSearchTerm)
|
||||
|
Loading…
Reference in New Issue
Block a user