mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Set 0 as integer in loading of graylog. (#14621)
#14476 probably made this require integer instead of empty string as default.
This commit is contained in:
@@ -135,7 +135,7 @@ $tmp_output .= '
|
||||
return {
|
||||
stream: "' . (isset($_POST['stream']) ? $_POST['stream'] : '') . '",
|
||||
device: "' . (isset($filter_device) ? $filter_device : '') . '",
|
||||
range: "' . (isset($_POST['range']) ? $_POST['range'] : '') . '",
|
||||
range: "' . (isset($_POST['range']) ? $_POST['range'] : 0) . '",
|
||||
loglevel: "' . (isset($_POST['loglevel']) ? $_POST['loglevel'] : '') . '",
|
||||
};
|
||||
},
|
||||
|
Reference in New Issue
Block a user