PlaceLookup::getAddressDetails() should be public, restore default values

PlaceLookup::getAddressDetails() is also used within the hierarchy.php
file so it must not be private.
This commit is contained in:
Jonas Hantelmann 2018-02-12 11:21:05 +01:00
parent 3505417e3f
commit a489ac07cd

View File

@ -462,7 +462,7 @@ class PlaceLookup
return $aPlaces;
}
private function getAddressDetails($iPlaceID, $bAll, $sHousenumber)
public function getAddressDetails($iPlaceID, $bAll = false, $sHousenumber = -1)
{
$sSQL = 'SELECT *,';
$sSQL .= ' get_name_by_language(name,'.$this->aLangPrefOrderSql.') as localname';