diff options
author | James Atkinson <thefinn@users.sourceforge.net> | 2002-03-26 16:27:20 +0000 |
---|---|---|
committer | James Atkinson <thefinn@users.sourceforge.net> | 2002-03-26 16:27:20 +0000 |
commit | cac37dfb8ef411499a73cacfc3a4813a8bf7414d (patch) | |
tree | 9068365a5a70664e9942a991b592a3cf1a828bbd /phpBB | |
parent | 7de3ac24deb62b2acac904c108a7e78119b3ecb7 (diff) | |
download | forums-cac37dfb8ef411499a73cacfc3a4813a8bf7414d.tar forums-cac37dfb8ef411499a73cacfc3a4813a8bf7414d.tar.gz forums-cac37dfb8ef411499a73cacfc3a4813a8bf7414d.tar.bz2 forums-cac37dfb8ef411499a73cacfc3a4813a8bf7414d.tar.xz forums-cac37dfb8ef411499a73cacfc3a4813a8bf7414d.zip |
Fixed bug #535245
git-svn-id: file:///svn/phpbb/trunk@2439 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/modcp.php | 2 |
1 files changed, 1 insertions, 1 deletions
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 ) ? '<input type="checkbox" name="post_id_list[]" value="' . $post_id . '" />' : ' '; + $checkbox = ( $i > 0 ) ? '<input type="checkbox" name="post_id_list[]" value="' . $post_id . '" />' : ' '; $template->assign_block_vars('postrow', array( 'ROW_COLOR' => '#' . $row_color, |