From 9a9ff95989fea033c4b933300e2dcfcd3a5d047c Mon Sep 17 00:00:00 2001 From: Sarah Hoffmann Date: Mon, 13 Apr 2020 11:53:44 +0200 Subject: [PATCH] fix logging of lookup calls Log start was called but the actual writing was missing. --- website/lookup.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/website/lookup.php b/website/lookup.php index 39a17ebd..7675ae13 100644 --- a/website/lookup.php +++ b/website/lookup.php @@ -81,5 +81,7 @@ $bShowPolygons = ''; $aExcludePlaceIDs = array(); $sMoreURL = ''; +logEnd($oDB, $hLog, 1); + $sOutputTemplate = ($sOutputFormat == 'jsonv2') ? 'json' : $sOutputFormat; include(CONST_BasePath.'/lib/template/search-'.$sOutputTemplate.'.php'); -- 2.39.5