]> git.openstreetmap.org Git - nominatim.git/commitdiff
remove PHP version check
authorSarah Hoffmann <lonvia@denofr.de>
Thu, 1 Jun 2017 17:42:28 +0000 (19:42 +0200)
committerSarah Hoffmann <lonvia@denofr.de>
Thu, 1 Jun 2017 18:10:10 +0000 (20:10 +0200)
5.4 is the minimum supported version now.

lib/lib.php

index b622748c2df9f907105404be97d2c88168deace0..9691f88a371b159cf7d62190674402a392be3ded 100644 (file)
@@ -475,16 +475,14 @@ function getResultDiameter($aResult)
 
 function javascript_renderData($xVal, $iOptions = 0)
 {
-    if (defined('PHP_VERSION_ID') && PHP_VERSION_ID > 50400) {
-        $iOptions |= JSON_UNESCAPED_UNICODE;
-        if (isset($_GET['pretty']) && in_array(strtolower($_GET['pretty']), array('1', 'true'))) {
-            $iOptions |= JSON_PRETTY_PRINT;
-        }
+    $iOptions |= JSON_UNESCAPED_UNICODE;
+    if (isset($_GET['pretty']) && in_array(strtolower($_GET['pretty']), array('1', 'true'))) {
+        $iOptions |= JSON_PRETTY_PRINT;
     }
 
     $jsonout = json_encode($xVal, $iOptions);
 
-    if (! isset($_GET['json_callback'])) {
+    if (!isset($_GET['json_callback'])) {
         header("Content-Type: application/json; charset=UTF-8");
         echo $jsonout;
     } else {