Skip to content

Commit

Permalink
Fix warning php8
Browse files Browse the repository at this point in the history
  • Loading branch information
charleneauger committed Jun 24, 2022
1 parent 91c0125 commit a77bf58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion require/ipdiscover/Ipdiscover.php
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public function form_add_subnet($title = '', $default_value, $form, $is_tag_link
foreach ($tab_typ_champ as $id => $values) {
$tab_typ_champ[$id]['CONFIG']['SIZE'] = 30;
if($tab_typ_champ[$id]["INPUT_TYPE"] == 2) {
$tab_typ_champ[$id]['CONFIG']['SELECTED_VALUE'] = $post[$tab_typ_champ[$id]['INPUT_NAME']];
$tab_typ_champ[$id]['CONFIG']['SELECTED_VALUE'] = $post[$tab_typ_champ[$id]['INPUT_NAME']] ?? '';
}
}

Expand Down

0 comments on commit a77bf58

Please sign in to comment.