narrow down search by house number when postcode is given

Fixes #1034.
This commit is contained in:
Sarah Hoffmann
2018-05-07 21:28:32 +02:00
parent b30e2ab5dc
commit c555b60b36

View File

@@ -593,7 +593,11 @@ class SearchDescription
$aTerms = array();
$aOrder = array();
if ($this->sHouseNumber && !empty($this->aAddress)) {
// Sort by existence of the requested house number but only if not
// too many results are expected for the street, i.e. if the result
// will be narrowed down by an address. Remeber that with ordering
// every single result has to be checked.
if ($this->sHouseNumber && (!empty($this->aAddress) || $this->sPostcode)) {
$sHouseNumberRegex = '\\\\m'.$this->sHouseNumber.'\\\\M';
$aOrder[] = ' (';
$aOrder[0] .= 'EXISTS(';