mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
@@ -87,8 +87,8 @@ foreach (dbFetchRows('SELECT * FROM pseudowires AS P, ports AS I, devices AS D W
|
||||
if ($pw_a) {
|
||||
$pw_a['width'] = '150';
|
||||
$pw_a['height'] = '30';
|
||||
$pw_a['from'] = $config['time']['day'];
|
||||
$pw_a['to'] = $config['time']['now'];
|
||||
$pw_a['from'] = \LibreNMS\Config::get('time.day');
|
||||
$pw_a['to'] = \LibreNMS\Config::get('time.now');
|
||||
$pw_a['bg'] = $bg;
|
||||
$types = array('bits', 'upkts', 'errors');
|
||||
foreach ($types as $graph_type) {
|
||||
@@ -102,8 +102,8 @@ foreach (dbFetchRows('SELECT * FROM pseudowires AS P, ports AS I, devices AS D W
|
||||
if ($pw_b) {
|
||||
$pw_b['width'] = '150';
|
||||
$pw_b['height'] = '30';
|
||||
$pw_b['from'] = $config['time']['day'];
|
||||
$pw_b['to'] = $config['time']['now'];
|
||||
$pw_b['from'] = \LibreNMS\Config::get('time.day');
|
||||
$pw_b['to'] = \LibreNMS\Config::get('time.now');
|
||||
$pw_b['bg'] = $bg;
|
||||
$types = array('bits', 'upkts', 'errors');
|
||||
foreach ($types as $graph_type) {
|
||||
|
Reference in New Issue
Block a user