mirror of
https://github.com/itflow-org/itflow
synced 2026-02-28 19:04:52 +00:00
Fix forloop regressions forgot to include POST duh
This commit is contained in:
@@ -131,7 +131,7 @@ if (isset($_POST['bulk_delete_certificates'])) {
|
||||
$count = count($_POST['certificate_ids']);
|
||||
|
||||
// Cycle through array and delete each certificate
|
||||
foreach ($certificate_ids as $certificate_id) {
|
||||
foreach ($_POST['certificate_ids'] as $certificate_id) {
|
||||
|
||||
$certificate_id = intval($certificate_id);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user