changed unruly html from a tags to p tags since they messed with styles somehow

This commit is contained in:
Johann Hoffmann
2024-09-20 13:54:32 +02:00
parent 79ea8c4521
commit 958c897467
2 changed files with 2 additions and 3 deletions
@@ -8,7 +8,7 @@
if($unruly) {
foreach ($unruly as $unruled)
{
echo '<a>Person ID: ' . $unruled->person_id . '<a/><br />';
echo '<p>Person ID: ' . $unruled->person_id . '<p/>';
}
}
?>
@@ -25,7 +25,7 @@
if($duplicate) {
foreach ($duplicate as $dupe)
{
echo '<a>Person ID: ' . $dupe->person_id . '<a/><br />';
echo '<p>Person ID: ' . $dupe->person_id . '<p/>';
}
}
?>
-1
View File
@@ -10,7 +10,6 @@ $(document).ready(function ()
duplicate.setAttribute('style', 'display: block;')
}
});
var PersonCheck = {