Facilitate styling of subboard listings

This commit is contained in:
Marcin Łabanowski 2012-12-22 20:14:43 +01:00
parent a2ca590c7c
commit 56eb3c6b15

View File

@ -25,7 +25,7 @@ function doBoardListPart($list, $root) {
$body = '';
foreach ($list as $board) {
if (is_array($board))
$body .= ' [' . doBoardListPart($board, $root) . '] ';
$body .= ' <span class="sub">[' . doBoardListPart($board, $root) . ']</span> ';
else {
if (($key = array_search($board, $list)) && gettype($key) == 'string') {
$body .= ' <a href="' . $board . '">' . $key . '</a> /';