don't use tokens from country parameter in address field of searches

fixes #218
This commit is contained in:
Sarah Hoffmann 2015-01-26 21:59:36 +01:00
parent b121da0ca3
commit d1552b0904

View File

@ -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)