Extend maximum monitoring interval.

The existing monitoring interval was a maximum of 86400 ms, or approximately 86 seconds. This can cause excessive data usage over strictly metered connections. This patch extends the maximum interval to 86,400,000 ms, or exactly 24 hours.
This commit is contained in:
Justin Coffman 2018-06-22 15:00:17 -04:00
parent be228fd8f7
commit 7ae00d0d8a

View File

@ -323,7 +323,7 @@ $section->addInput(new Form_Input(
$pconfig['interval'],
[
'placeholder' => $dpinger_default['interval'],
'max' => 86400
'max' => 86400000
]
))->setHelp('How often an ICMP probe will be sent in milliseconds. Default is %d.', $dpinger_default['interval']);