X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/a46c739ffb1801c83a86b4776c70a3e9cb0440c6..8d7eb9da6656fee0d924a5a2f5a5caf0671a9a41:/lib/log.php diff --git a/lib/log.php b/lib/log.php index 361c0fb1..501259d0 100644 --- a/lib/log.php +++ b/lib/log.php @@ -19,6 +19,8 @@ { if (isset($_GET['email'])) $sUserAgent = $_GET['email']; + elseif (isset($_SERVER['HTTP_REFERER'])) + $sUserAgent = $_SERVER['HTTP_REFERER']; else $sUserAgent = $_SERVER['HTTP_USER_AGENT']; $sSQL = 'insert into new_query_log (type,starttime,query,ipaddress,useragent,language,format,searchterm)';