]> git.openstreetmap.org Git - nominatim.git/blobdiff - lib/PlaceLookup.php
clean up query logging
[nominatim.git] / lib / PlaceLookup.php
index 985ed224a64213f46ddcfd9d5e0d9fa1dbd0b4fd..94e414dc7d45e930e8d1092f45f1f9e4125860ee 100644 (file)
@@ -7,7 +7,7 @@
 
                protected $sType = false;
 
-               protected $fTigerFraction =-1;
+               protected $fTigerFraction = -1;
 
                protected $aLangPrefOrder = array();
 
 
                function setIncludeExtraTags($bExtraTags = false)
                {
-                       if ((float) CONST_Postgresql_Version > 9.2)
-                       {
-                               $this->bExtraTags = $bExtraTags;
-                       }
+                       $this->bExtraTags = $bExtraTags;
                }
 
                function setIncludeNameDetails($bNameDetails = false)
                {
-                       if ((float) CONST_Postgresql_Version > 9.2)
-                       {
-                               $this->bNameDetails = $bNameDetails;
-                       }
+                       $this->bNameDetails = $bNameDetails;
                }