From 1545576d1eabd0f546713e536fdd155a8a2127a4 Mon Sep 17 00:00:00 2001 From: Jakob Date: Sat, 7 Mar 2020 19:29:33 +0100 Subject: [PATCH] fixed links --- threadr/boards/index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/threadr/boards/index.php b/threadr/boards/index.php index a1a06f1..01cb2a3 100644 --- a/threadr/boards/index.php +++ b/threadr/boards/index.php @@ -29,7 +29,7 @@ $navbar="boards"; $statement = $pdo->prepare("SELECT * FROM boards WHERE private='0' ORDER BY id asc"); $statement->execute(); foreach($statement->fetchAll() as $ROW) { - echo "
  • $ROW[name]
  • "; + echo "
  • $ROW[name]
  • "; } } if (!$result) { @@ -49,7 +49,7 @@ $navbar="boards"; $statement = $pdo->prepare("SELECT * FROM boards WHERE private='1' ORDER BY id asc"); $statement->execute(); foreach($statement->fetchAll() as $ROW) { - echo "
  • $ROW[name]
  • "; + echo "
  • $ROW[name]
  • "; } } if (!$result) {