diff --git a/phpBB/modcp.php b/phpBB/modcp.php
index 8da6c614b5..39d667d861 100644
--- a/phpBB/modcp.php
+++ b/phpBB/modcp.php
@@ -788,7 +788,7 @@ switch($mode)
$row_color = ( !($i % 2) ) ? $theme['td_color1'] : $theme['td_color2'];
$row_class = ( !($i % 2) ) ? $theme['td_class1'] : $theme['td_class2'];
- $checkbox = ( $i > 1 || $total_posts > 1 ) ? '' : ' ';
+ $checkbox = ( $i > 0 ) ? '' : ' ';
$template->assign_block_vars('postrow', array(
'ROW_COLOR' => '#' . $row_color,