diff options
author | INOPIAE <inopiae@cacert.org> | 2013-01-06 22:53:26 +0100 |
---|---|---|
committer | INOPIAE <inopiae@cacert.org> | 2013-01-06 22:53:26 +0100 |
commit | a8d25bfb78b4d016ff67282cbbf771bf0f96d708 (patch) | |
tree | b6930535e0162a76d7ff41e8f4115d7ac3006aa6 /pages/account | |
parent | c2b222a40ec6d43e8bc35dd6dc38b44bde11f7c9 (diff) | |
download | cacert-devel-a8d25bfb78b4d016ff67282cbbf771bf0f96d708.tar.gz cacert-devel-a8d25bfb78b4d016ff67282cbbf771bf0f96d708.tar.xz cacert-devel-a8d25bfb78b4d016ff67282cbbf771bf0f96d708.zip |
bug 782: Changed index in html table
Diffstat (limited to 'pages/account')
-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> <? } ?> |