From 958c897467815f22eb8749e60e6d1d85c7c3641e Mon Sep 17 00:00:00 2001 From: Johann Hoffmann Date: Fri, 20 Sep 2024 13:54:32 +0200 Subject: [PATCH] changed unruly html from a tags to p tags since they messed with styles somehow --- application/views/system/infocenter/personCheck.php | 4 ++-- public/js/infocenter/personcheck.js | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/application/views/system/infocenter/personCheck.php b/application/views/system/infocenter/personCheck.php index c43a11bed..d24d26419 100644 --- a/application/views/system/infocenter/personCheck.php +++ b/application/views/system/infocenter/personCheck.php @@ -8,7 +8,7 @@ if($unruly) { foreach ($unruly as $unruled) { - echo 'Person ID: ' . $unruled->person_id . '
'; + echo '

Person ID: ' . $unruled->person_id . '

'; } } ?> @@ -25,7 +25,7 @@ if($duplicate) { foreach ($duplicate as $dupe) { - echo 'Person ID: ' . $dupe->person_id . '
'; + echo '

Person ID: ' . $dupe->person_id . '

'; } } ?> diff --git a/public/js/infocenter/personcheck.js b/public/js/infocenter/personcheck.js index 55ada0b11..ad0026bac 100644 --- a/public/js/infocenter/personcheck.js +++ b/public/js/infocenter/personcheck.js @@ -10,7 +10,6 @@ $(document).ready(function () duplicate.setAttribute('style', 'display: block;') } - }); var PersonCheck = {