X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/5502c223756ed755edae9670497f1456e528d3f0..f7f51c541b4e2bc91914c7920a47d40f242bed57:/website/status.php?ds=inline diff --git a/website/status.php b/website/status.php index 0caa92a0..a876f999 100644 --- a/website/status.php +++ b/website/status.php @@ -1,26 +1,41 @@ getOne("select word_id,word_token, word, class, type, location, country_code, operator, search_name_count from word where word_token in (' a')"); + $oDB =& getDB(); + if (!$oDB || PEAR::isError($oDB)) + { + statusError("No database"); + } + + $sStandardWord = $oDB->getOne("select make_standard_name('a')"); + if (PEAR::isError($sStandardWord)) + { + statusError("Module failed"); + } + if ($sStandardWord != 'a') + { + statusError("Module call failed"); + } + + $iWordID = $oDB->getOne("select word_id,word_token, word, class, type, country_code, operator, search_name_count from word where word_token in (' a')"); if (PEAR::isError($iWordID)) { - echo "ERROR: Query failed"; - exit; + statusError("Query failed"); } if (!$iWordID) { - echo "ERROR: No value"; - exit; + statusError("No value"); } + echo "OK"; exit;