]> git.openstreetmap.org Git - nominatim.git/commitdiff
use RFC3339 for human readable date
authormarc tobias <mtmail@gmx.net>
Mon, 9 Apr 2018 11:57:28 +0000 (13:57 +0200)
committerSarah Hoffmann <lonvia@denofr.de>
Thu, 12 Apr 2018 20:02:24 +0000 (22:02 +0200)
lib/template/details-json.php

index f58d38b24eeb544449cecdfe329a550df2f74734..03f285ec5e20a5c53f136f6531f4e2eec670faf4 100644 (file)
@@ -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;
 };