| @@ 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 ' |
|
| @@ 145-147 (lines=3) @@ | ||
| 142 | echo ' |
|
| 143 | ', $context['description'], ' '; |
|
| 144 | ||
| 145 | if (!empty($context['moderators'])) |
|
| 146 | echo ' |
|
| 147 | ', count($context['moderators']) === 1 ? $txt['moderator'] : $txt['moderators'], ': ', implode(', ', $context['link_moderators']), '.'; |
|
| 148 | ||
| 149 | echo ' |
|
| 150 | </p> |
|
| @@ 184-186 (lines=3) @@ | ||
| 181 | <p class="board_description">', $board['description'], '</p>'; |
|
| 182 | ||
| 183 | // Show the "Moderators: ". Each has name, href, link, and id. (but we're gonna use link_moderators.) |
|
| 184 | if (!empty($board['link_moderators'])) |
|
| 185 | echo ' |
|
| 186 | <p class="moderators">', count($board['link_moderators']) == 1 ? $txt['moderator'] : $txt['moderators'], ': ', implode(', ', $board['link_moderators']), '</p>'; |
|
| 187 | } |
|
| 188 | ||
| 189 | /** |
|