Files
librenms-librenms/includes/html/graphs/atmvp/auth.inc.php
Tony Murray 95a0050074 Remove $_GET from graphs (#14554)
Fixes issues setting variables in other contexts
2022-11-02 08:24:42 -05:00

16 lines
592 B
PHP

<?php
$atm_vp_id = $vars['id'] ?? 0;
$vp = dbFetchRow('SELECT * FROM `juniAtmVp` as J, `ports` AS I, `devices` AS D WHERE J.juniAtmVp_id = ? AND I.port_id = J.port_id AND I.device_id = D.device_id', [$atm_vp_id]);
if ($auth || port_permitted($vp['port_id'])) {
$port = cleanPort($vp);
$device = device_by_id_cache($port['device_id']);
$title = generate_device_link($device);
$title .= ' :: Port ' . generate_port_link($port);
$title .= ' :: VP ' . $vp['vp_id'];
$auth = true;
$rrd_filename = Rrd::name($vp['hostname'], ['vp', $vp['ifIndex'], $vp['vp_id']]);
}