From: marc tobias Date: Mon, 9 Apr 2018 11:57:28 +0000 (+0200) Subject: use RFC3339 for human readable date X-Git-Tag: v3.2.0~85 X-Git-Url: https://git.openstreetmap.org./nominatim.git/commitdiff_plain/fe3dba3fd717917301b792ec83472287fa37d205 use RFC3339 for human readable date --- diff --git a/lib/template/details-json.php b/lib/template/details-json.php index f58d38b2..03f285ec 100644 --- a/lib/template/details-json.php +++ b/lib/template/details-json.php @@ -20,7 +20,7 @@ $aPlaceDetails['housenumber'] = $aPointDetails['housenumber']; $aPlaceDetails['calculated_postcode'] = $aPointDetails['postcode']; $aPlaceDetails['country_code'] = $aPointDetails['country_code']; -$aPlaceDetails['indexed_date'] = (new DateTime('@'.$aPointDetails['indexed_epoch']))->format(DateTime::RFC822); +$aPlaceDetails['indexed_date'] = (new DateTime('@'.$aPointDetails['indexed_epoch']))->format(DateTime::RFC3339); $aPlaceDetails['importance'] = (float) $aPointDetails['importance']; $aPlaceDetails['calculated_importance'] = (float) $aPointDetails['calculated_importance']; @@ -40,7 +40,7 @@ $aPlaceDetails['lon'] = (float) $aPointDetails['lon']; $aPlaceDetails['geometry'] = json_decode($aPointDetails['asgeojson']); $funcMapAddressLine = function ($aFull) { - $aMapped = [ + $aMapped = array( 'localname' => $aFull['localname'], 'place_id' => isset($aFull['place_id']) ? (int) $aFull['place_id'] : null, 'osm_id' => isset($aFull['osm_id']) ? (int) $aFull['osm_id'] : null, @@ -50,16 +50,16 @@ $funcMapAddressLine = function ($aFull) { 'admin_level' => isset($aFull['admin_level']) ? (int) $aFull['admin_level'] : null, 'rank_address' => $aFull['rank_address'] ? (int) $aFull['rank_address'] : null, 'distance' => (float) $aFull['distance'] - ]; + ); return $aMapped; }; $funcMapKeyword = function ($aFull) { - $aMapped = [ + $aMapped = array( 'id' => (int) $aFull['word_id'], 'token' => $aFull['word_token'] - ]; + ); return $aMapped; };