X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/8841a328c811072b093df2c91c48972e040cf994..95fc680af9f15368fd51bdcba2487e8a48a82d16:/website/status.php diff --git a/website/status.php b/website/status.php index c0c379d0..0d483544 100644 --- a/website/status.php +++ b/website/status.php @@ -1,8 +1,5 @@ getSet('format', array('text', 'json'), 'text'); -$oDB = DB::connect(CONST_Database_DSN, false); -$oStatus = new Nominatim\Status($oDB); - +$oDB = new Nominatim\DB(); if ($sOutputFormat == 'json') { header('content-type: application/json; charset=UTF-8'); @@ -20,6 +15,7 @@ if ($sOutputFormat == 'json') { try { + $oStatus = new Nominatim\Status($oDB); $oStatus->status(); } catch (Exception $oErr) { if ($sOutputFormat == 'json') {