X-Git-Url: https://git.openstreetmap.org/nominatim.git/blobdiff_plain/6a3c6c43ea7133c934834ce1face9212f4e3d239..31c7f255414134ff63d78306763bd3937ccc325c:/website/hierarchy.php diff --git a/website/hierarchy.php b/website/hierarchy.php index 8f2f5237..9b488f83 100755 --- a/website/hierarchy.php +++ b/website/hierarchy.php @@ -62,7 +62,7 @@ $oPlaceLookup->setIncludeAddressDetails(true); $aPlaceAddress = array_reverse($oPlaceLookup->getAddressDetails($iPlaceID)); -if (!sizeof($aPlaceAddress)) userError('Unknown place id.'); +if (empty($aPlaceAddress)) userError('Unknown place id.'); $aBreadcrums = array(); foreach ($aPlaceAddress as $i => $aPlace) { @@ -100,7 +100,7 @@ $sSQL .= ' where parent_place_id in ('.join(',', $aRelatedPlaceIDs).') and name $sSQL .= ' order by rank_address asc,rank_search asc,localname,class, type,housenumber'; $aParentOfLines = chksql($oDB->getAll($sSQL)); -if (sizeof($aParentOfLines)) { +if (!empty($aParentOfLines)) { echo '

Parent Of:

'; $aClassType = getClassTypesWithImportance(); $aGroupedAddressLines = array(); @@ -136,7 +136,7 @@ if (sizeof($aParentOfLines)) { echo ''; } } - if (sizeof($aParentOfLines) >= 500) { + if (count($aParentOfLines) >= 500) { echo '

There are more child objects which are not shown.

'; } echo '';