From 2136700fc8fe2e91dae630541d95a61385ae450a Mon Sep 17 00:00:00 2001 From: Yasen Pramatarov Date: Sat, 6 Jul 2024 17:32:13 +0300 Subject: [PATCH] Front page fixes --- public_html/pages/front.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public_html/pages/front.php b/public_html/pages/front.php index 2e06c76..505d3c2 100644 --- a/public_html/pages/front.php +++ b/public_html/pages/front.php @@ -193,8 +193,8 @@ if (!empty($conferences['records'])) { echo "\t\t\n"; // sometimes $column is empty, we make it '' then foreach ($row as $key => $column) { - if ($key === 'conference ID' && $column === $conference_id) { - echo "\t\t\t" . htmlspecialchars($column ?? '') . "\n"; + if ($key === 'conference ID') { + echo "\t\t\t" . htmlspecialchars($column ?? '') . "\n"; } elseif ($key === 'conference name') { echo "\t\t\t" . htmlspecialchars($column ?? '') . "\n"; } else {