mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
fix: Updated edit snmp to set default poller_group (#4694)
This commit is contained in:
committed by
Daniel Preussker
parent
f14335b7a5
commit
f4bbba1b7d
@@ -8,7 +8,7 @@ if ($_POST['editing']) {
|
||||
$port = $_POST['port'] ? mres($_POST['port']) : $config['snmp']['port'];
|
||||
$timeout = mres($_POST['timeout']);
|
||||
$retries = mres($_POST['retries']);
|
||||
$poller_group = mres($_POST['poller_group']);
|
||||
$poller_group = isset($_POST['poller_group']) ? mres($_POST['poller_group']) : 0;
|
||||
$port_assoc_mode = mres($_POST['port_assoc_mode']);
|
||||
$max_repeaters = mres($_POST['max_repeaters']);
|
||||
$v3 = array(
|
||||
|
Reference in New Issue
Block a user