Browse Source

Undo 7e0cec for now. Will restore later once I resolve issues

pull/40/head
Michael Foster 11 years ago
parent
commit
81da2fea04
  1. 3
      inc/display.php

3
inc/display.php

@ -25,7 +25,8 @@ function doBoardListPart($list, $root) {
$body = '';
foreach ($list as $board) {
if (is_array($board))
$body .= ' <span class="sub">[' . doBoardListPart($board, $root) . ']</span> ';
$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