Skip to content

Commit

Permalink
Chrome is odd and puts a space after the number of posts in a board b…
Browse files Browse the repository at this point in the history
…efore the <br> messing the alignment - thanks Jorin for reporting and insisting despite my stubbornness in saying everything was fine

Signed-off-by: emanuele <emanuele45@gmail.com>
  • Loading branch information
emanuele45 committed Aug 26, 2014
1 parent e430ccc commit 9a48e43
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions themes/default/GenericBoards.template.php
Expand Up @@ -145,8 +145,7 @@ function template_list_boards($boards, $id)
</div>
<div class="board_latest">
<p class="board_stats">
', comma_format($board['posts']), ' ', $board['is_redirect'] ? $txt['redirects'] : $txt['posts'], '
', $board['is_redirect'] ? '' : '<br /> ' . comma_format($board['topics']) . ' ' . $txt['board_topics'], '
', comma_format($board['posts']), ' ', $board['is_redirect'] ? $txt['redirects'] : $txt['posts'], $board['is_redirect'] ? '' : '<br /> ' . comma_format($board['topics']) . ' ' . $txt['board_topics'], '
</p>';

// @todo - Last post message still needs some work. Probably split the language string into three chunks.
Expand Down

0 comments on commit 9a48e43

Please sign in to comment.