Browse Source

Facilitate styling of subboard listings

pull/40/head
Marcin Łabanowski 11 years ago
parent
commit
56eb3c6b15
  1. 2
      inc/display.php

2
inc/display.php

@ -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> /';

Loading…
Cancel
Save