php -> lp

There are still a few cases left in debug.js, but as that feature is so far missing, I will leave them for now
This commit is contained in:
Adam Warner
2023-07-28 22:55:06 +01:00
parent 810ef59080
commit d59bbd26db
4 changed files with 5 additions and 5 deletions

View File

@@ -142,9 +142,9 @@ $(function () {
var ip = data.ips[index];
if (ip.name !== null && ip.name.length > 0)
ips.push(
'<a href="queries.php?client=' + ip.ip + '">' + ip.ip + " (" + ip.name + ")</a>"
'<a href="queries.lp?client_ip=' + ip.ip + '">' + ip.ip + " (" + ip.name + ")</a>"
);
else ips.push('<a href="queries.php?client=' + ip.ip + '">' + ip.ip + "</a>");
else ips.push('<a href="queries.lp?client_ip=' + ip.ip + '">' + ip.ip + "</a>");
}
if (data.ips.length > MAXIPDISPLAY) {