diff options
-rw-r--r-- | pages/account/6.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pages/account/6.php b/pages/account/6.php index 1436308..e3bc139 100644 --- a/pages/account/6.php +++ b/pages/account/6.php @@ -176,9 +176,9 @@ <tr> <td class="DataTD"><?=_("Renew/Revoke/Delete")?></td> <? if($verified != _("Pending") && $verified != _("Revoked")) { ?> - <td class="DataTD"><input type="checkbox" name="revokeid[]" value="<?=$row['id']?>"></td> + <td class="DataTD"><input type="checkbox" name="revokeid[<?=$row['id']?>]" ></td> <? } else if($verified != _("Revoked")) { ?> - <td class="DataTD"><input type="checkbox" name="delid[]" value="<?=$row['id']?>"></td> + <td class="DataTD"><input type="checkbox" name="delid[<?=$row['id']?>]"></td> <? } else { ?> <td class="DataTD"> </td> <? } ?> |