aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/adm/admin_users.php
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2004-02-27 12:33:22 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2004-02-27 12:33:22 +0000
commite1600cd31f8d528a7256d1e6b6ab1897673cb426 (patch)
tree8829ba3c234c48eed247f85a951081d9881ed503 /phpBB/adm/admin_users.php
parentdbf93ce5aabdcbf3190e2d414cf54bbb57fc760a (diff)
downloadforums-e1600cd31f8d528a7256d1e6b6ab1897673cb426.tar
forums-e1600cd31f8d528a7256d1e6b6ab1897673cb426.tar.gz
forums-e1600cd31f8d528a7256d1e6b6ab1897673cb426.tar.bz2
forums-e1600cd31f8d528a7256d1e6b6ab1897673cb426.tar.xz
forums-e1600cd31f8d528a7256d1e6b6ab1897673cb426.zip
value in wrong place
git-svn-id: file:///svn/phpbb/trunk@4842 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/adm/admin_users.php')
-rw-r--r--phpBB/adm/admin_users.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/adm/admin_users.php b/phpBB/adm/admin_users.php
index cf5186c45b..f777c36d23 100644
--- a/phpBB/adm/admin_users.php
+++ b/phpBB/adm/admin_users.php
@@ -1949,7 +1949,7 @@ function marklist(match, status)
<td class="<?php echo $row_class; ?>" class="gensmall" style="padding: 4px;" align="center" nowrap="nowrap">&nbsp;<?php echo $user->format_date($row['filetime'], $user->lang['DATE_FORMAT']); ?>&nbsp;</td>
<td class="<?php echo $row_class; ?>" style="padding: 4px;" align="center" nowrap="nowrap"><span class="gen"><?php echo ($row['filesize'] >= 1048576) ? (round($row['filesize'] / 1048576 * 100) / 100) . ' ' . $user->lang['MB'] : (($row['filesize'] >= 1024) ? (round($row['filesize'] / 1024 * 100) / 100) . ' ' . $user->lang['KB'] : $row['filesize'] . ' ' . $user->lang['BYTES']); ?></span></td>
<td class="<?php echo $row_class; ?>" style="padding: 4px;" align="center"><span class="gen"><?php echo $row['download_count']; ?></span></td>
- <td class="<?php echo $row_class; ?>" style="padding: 4px;" align="center"><input type="checkbox" name="mark[<?php echo $row['attach_id']; ?>]" value="1" /></td>
+ <td class="<?php echo $row_class; ?>" style="padding: 4px;" align="center"><input type="checkbox" name="mark[]" value="<?php echo $row['attach_id']; ?>" /></td>
</tr>
<?php