mirror of
https://github.com/itflow-org/itflow
synced 2026-02-28 19:04:52 +00:00
Check to see if arrays are set before executing for each loops to prevent php errors
This commit is contained in:
@@ -92,7 +92,7 @@ if (isset($_POST['bulk_delete_networks'])) {
|
||||
enforceUserPermission('module_support', 3);
|
||||
validateCSRFToken($_POST['csrf_token']);
|
||||
|
||||
if ($_POST['network_ids']) {
|
||||
if (isset($_POST['network_ids'])) {
|
||||
|
||||
// Get Selected Count
|
||||
$count = count($_POST['network_ids']);
|
||||
|
||||
Reference in New Issue
Block a user