X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/5605725ebe2c70ecd3d07353e1c51c320642cdf3..9f880c367c4a9fd8a2950011eeba22c77ab0c914:/lib/log.php?ds=inline diff --git a/lib/log.php b/lib/log.php index d81ef46d..8022376d 100644 --- a/lib/log.php +++ b/lib/log.php @@ -17,9 +17,13 @@ if (CONST_Log_DB) { + if (isset($_GET['email'])) + $sUserAgent = $_GET['email']; + else + $sUserAgent = $_SERVER['HTTP_USER_AGENT']; $sSQL = 'insert into new_query_log (type,starttime,query,ipaddress,useragent,language,format,searchterm)'; $sSQL .= ' values ('.getDBQuoted($sType).','.getDBQuoted($hLog[0]).','.getDBQuoted($hLog[2]); - $sSQL .= ','.getDBQuoted($hLog[1]).','.getDBQuoted($_SERVER['HTTP_USER_AGENT']).','.getDBQuoted(join(',',$aLanguageList)).','.getDBQuoted($_GET['format']).','.getDBQuoted($hLog[3]).')'; + $sSQL .= ','.getDBQuoted($hLog[1]).','.getDBQuoted($sUserAgent).','.getDBQuoted(join(',',$aLanguageList)).','.getDBQuoted($sOutputFormat).','.getDBQuoted($hLog[3]).')'; $oDB->query($sSQL); }