X-Git-Url: https://git.openstreetmap.org/nominatim.git/blobdiff_plain/e70f405abddfe5a8a7400424558071ebba769eda..276c43d720a3f08632acc5e06ed2db02b1de6a2e:/website/search.php?ds=sidebyside diff --git a/website/search.php b/website/search.php index 696cdf73..55705656 100644 --- a/website/search.php +++ b/website/search.php @@ -6,7 +6,8 @@ require_once(CONST_BasePath.'/lib/Geocode.php'); require_once(CONST_BasePath.'/lib/output.php'); ini_set('memory_limit', '200M'); -$oDB =& getDB(); +$oDB = new Nominatim\DB(); +$oDB->connect(); $oParams = new Nominatim\ParameterParser(); $oGeocode = new Nominatim\Geocode($oDB); @@ -49,6 +50,7 @@ $oGeocode->setQueryFromParams($oParams); if (!$oGeocode->getQueryString() && isset($_SERVER['PATH_INFO']) + && strlen($_SERVER['PATH_INFO']) > 0 && $_SERVER['PATH_INFO'][0] == '/' ) { $sQuery = substr(rawurldecode($_SERVER['PATH_INFO']), 1); @@ -65,7 +67,7 @@ $hLog = logStart($oDB, 'search', $oGeocode->getQueryString(), $aLangPrefOrder); $aSearchResults = $oGeocode->lookup(); if ($sOutputFormat=='html') { - $sDataDate = chksql($oDB->getOne("select TO_CHAR(lastimportdate,'YYYY/MM/DD HH24:MI')||' GMT' from import_status limit 1")); + $sDataDate = $oDB->getOne("select TO_CHAR(lastimportdate,'YYYY/MM/DD HH24:MI')||' GMT' from import_status limit 1"); } logEnd($oDB, $hLog, count($aSearchResults));