diff --git a/boards.php b/boards.php
index 46bddb38..22a76816 100644
--- a/boards.php
+++ b/boards.php
@@ -33,7 +33,7 @@ th.headerSortDown {
}
CSS;
-$body .= '
L | Board | Posts in last hour | Total posts | Created |
';
+$body .= 'L | Board | Board title | Posts in last hour | Total posts | Created |
';
$total_posts_hour = 0;
$total_posts = 0;
@@ -80,7 +80,7 @@ foreach ($boards as $i => &$board) {
}
$locale = isset($boardCONFIG['locale'])?$boardCONFIG['locale']:'en';
- $board['title'] = htmlentities(utf8tohtml($board['title']));
+ $board['title'] = utf8tohtml($board['title']);
$locale_arr = explode('_', $locale);
$locale_short = isset($locale_arr[1]) ? strtolower($locale_arr[1]) : strtolower($locale_arr[0]);
$locale_short = str_replace('.utf-8', '', $locale_short);
@@ -97,7 +97,8 @@ foreach ($boards as $i => &$board) {
$board['ago'] = human_time_diff(strtotime($board['time']));
$body .= "";
$body .= "$img | ";
- $body .= "/{$board['uri']}/$lock | ";
+ $body .= "/{$board['uri']}/$lock | ";
+ $body .= "{$board['title']} | ";
$body .= "{$board['pph']} | ";
$body .= "{$board['max']} | ";
$body .= "{$board['time']} ({$board['ago']} ago) |
";
@@ -121,7 +122,7 @@ $body .= <<