From: Sarah Hoffmann Date: Mon, 10 Oct 2016 20:12:42 +0000 (+0200) Subject: fix variable name typos X-Git-Tag: v3.0.0~108 X-Git-Url: https://git.openstreetmap.org/nominatim.git/commitdiff_plain/0e613a362e67bcb718e0f56ebc6410c204dd3842 fix variable name typos --- diff --git a/website/deletable.php b/website/deletable.php index 90eb40c8..d99eb5d1 100755 --- a/website/deletable.php +++ b/website/deletable.php @@ -13,7 +13,7 @@ $oDB =& getDB(); $sSQL = "select placex.place_id, calculated_country_code as country_code, name->'name' as name, i.* from placex, import_polygon_delete i where placex.osm_id = i.osm_id and placex.osm_type = i.osm_type and placex.class = i.class and placex.type = i.type"; $aPolygons = chksql($oDB->getAll($sSQL), "Could not get list of deleted OSM elements."); -if (CONST_DEBUG) { +if (CONST_Debug) { var_dump($aPolygons); exit; } diff --git a/website/details.php b/website/details.php index 1276a038..9fb8a900 100755 --- a/website/details.php +++ b/website/details.php @@ -78,8 +78,8 @@ $aPointDetails['localname'] = $aPointDetails['localname']?$aPointDetails['localn $aClassType = getClassTypesWithImportance(); $sPointClassType = $aPointDetails['class'].':'.$aPointDetails['type']; -if (isset($aClassType[$sPointClassType]) && $aClassType[$aPointDetails]['icon']) { - $aPointDetails['icon'] = $aClassType[$aPointClassType]['icon']; +if (isset($aClassType[$sPointClassType]) && $aClassType[$sPointClassType]['icon']) { + $aPointDetails['icon'] = $aClassType[$sPointClassType]['icon']; } else { $aPointDetails['icon'] = false; }