From cac37dfb8ef411499a73cacfc3a4813a8bf7414d Mon Sep 17 00:00:00 2001 From: James Atkinson Date: Tue, 26 Mar 2002 16:27:20 +0000 Subject: [PATCH] Fixed bug #535245 git-svn-id: file:///svn/phpbb/trunk@2439 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/modcp.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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,