Fix pre boxes

This commit is contained in:
Robert Miles 2018-07-08 10:11:57 -04:00
parent b09435e257
commit fd260aec9f
1 changed files with 2 additions and 2 deletions

View File

@ -6,9 +6,9 @@
$time = date_format($time, "Y/m/d H:i");
echo "\t\t<div class='well' id='post{$message["post_id"]}'>".PHP_EOL;
echo "\t\t\t<p>&gt;{$message['post_id']} {$username} @ {$time}</p>".PHP_EOL;
echo "\t\t\t<pre>".PHP_EOL;
echo "\t\t\t<pre>";
echo $message["body"].PHP_EOL;
echo "\t\t\t</pre>".PHP_EOL;
echo "</pre>".PHP_EOL;
echo "\t\t</div>".PHP_EOL;
}
?>