X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/e33928bbf031720bab699c8acfa401b3ced7c02b..6b1f2cb2bc9771f2c65ff3f44855e6bfdf778d90:/lib/log.php diff --git a/lib/log.php b/lib/log.php index 501259d0..59e04d17 100644 --- a/lib/log.php +++ b/lib/log.php @@ -3,7 +3,7 @@ function logStart(&$oDB, $sType = '', $sQuery = '', $aLanguageList = array()) { $aStartTime = explode('.',microtime(true)); - if (!$aStartTime[1]) $aStartTime[1] = '0'; + if (!isset($aStartTime[1])) $aStartTime[1] = '0'; $sOutputFormat = ''; if (isset($_GET['format'])) $sOutputFormat = $_GET['format'];