From 521093bc2d109dae1dc66499f14deaacfe519669 Mon Sep 17 00:00:00 2001 From: Andreas Date: Mon, 23 Oct 2023 13:35:27 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Bug=20fix:=20icons=20not=20loadi?= =?UTF-8?q?ng?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixed icons not loading by adding missing footer on ip lookup --- src/user/lookup.php | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/user/lookup.php b/src/user/lookup.php index 618eaf6..00120d4 100644 --- a/src/user/lookup.php +++ b/src/user/lookup.php @@ -59,12 +59,14 @@ $ip_info = getipinfo($ip_address); foreach ($ip_info as $key => $value) { - echo ""; - echo "" . Util::securevar($key) . ""; - echo "" . Util::securevar($value) . ""; - echo ""; + Util::display(""); + Util::display("" . Util::securevar($key) . ""); + Util::display("" . Util::securevar($value) . ""); + Util::display(""); } } ?> + + \ No newline at end of file