diff --git a/threadr/boards/index.php b/threadr/boards/index.php
index 256a395..4cc528f 100644
--- a/threadr/boards/index.php
+++ b/threadr/boards/index.php
@@ -25,7 +25,7 @@ $navbar="boards";
$error = false;
$error_message = "";
if (!$error) {
- echo '
Public Boards
';
+ echo 'Public Boards
';
$statement = $pdo->prepare("SELECT * FROM boards WHERE private='0' ORDER BY id asc");
$statement->execute();
foreach($statement->fetchAll() as $ROW) {
@@ -40,7 +40,7 @@ $navbar="boards";
$error = false;
$error_message = "";
if (!$error) {
- echo 'Private Boards
';
+ echo '
Private Boards
';
$statement = $pdo->prepare("SELECT * FROM boards WHERE private='1' ORDER BY id asc");
$statement->execute();
foreach($statement->fetchAll() as $ROW) {