| @@ 59-61 (lines=3) @@ | ||
| 56 | <p class="board_description">', $board['description'], '</p>'; |
|
| 57 | ||
| 58 | // Show the "Moderators: ". Each has name, href, link, and id. (but we're gonna use link_moderators.) |
|
| 59 | if (!empty($board['moderators']) || !empty($board['moderator_groups'])) |
|
| 60 | echo ' |
|
| 61 | <p class="moderators">', count($board['link_moderators']) === 1 ? $txt['moderator'] : $txt['moderators'], ': ', implode(', ', $board['link_moderators']), '</p>'; |
|
| 62 | ||
| 63 | // Show some basic information about the number of posts, etc. |
|
| 64 | echo ' |
|
| @@ 149-151 (lines=3) @@ | ||
| 146 | echo ' |
|
| 147 | ', $context['description'], ' '; |
|
| 148 | ||
| 149 | if (!empty($context['moderators'])) |
|
| 150 | echo ' |
|
| 151 | ', count($context['moderators']) === 1 ? $txt['moderator'] : $txt['moderators'], ': ', implode(', ', $context['link_moderators']), '.'; |
|
| 152 | ||
| 153 | echo ' |
|
| 154 | </p> |
|
| @@ 186-188 (lines=3) @@ | ||
| 183 | <p class="board_description">', $board['description'], '</p>'; |
|
| 184 | ||
| 185 | // Show the "Moderators: ". Each has name, href, link, and id. (but we're gonna use link_moderators.) |
|
| 186 | if (!empty($board['link_moderators'])) |
|
| 187 | echo ' |
|
| 188 | <p class="moderators">', count($board['link_moderators']) == 1 ? $txt['moderator'] : $txt['moderators'], ': ', implode(', ', $board['link_moderators']), '</p>'; |
|
| 189 | } |
|
| 190 | ||
| 191 | /** |
|