Skip to content

Commit

Permalink
πŸ› Bug fix: icons not loading
Browse files Browse the repository at this point in the history
Fixed icons not loading by adding missing footer on ip lookup
  • Loading branch information
anditv21 committed Oct 23, 2023
1 parent 949664e commit 521093b
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/user/lookup.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,12 +59,14 @@
$ip_info = getipinfo($ip_address);

foreach ($ip_info as $key => $value) {
echo "<tr>";
echo "<th>" . Util::securevar($key) . "</th>";
echo "<td>" . Util::securevar($value) . "</td>";
echo "</tr>";
Util::display("<tr>");
Util::display("<th>" . Util::securevar($key) . "</th>");
Util::display("<td>" . Util::securevar($value) . "</td>");
Util::display("</tr>");
}
}
?>
</tbody>
</table>

<?php Util::footer(); ?>

0 comments on commit 521093b

Please sign in to comment.