mirror of
https://github.com/stylersnico/librenms.git
synced 2026-07-28 08:02:41 +02:00
Apply "Squiz" code style on old (pre-2014) files
This commit is contained in:
@@ -1,19 +1,15 @@
|
||||
<?php
|
||||
|
||||
if (is_numeric($vars['id']))
|
||||
{
|
||||
$disk = dbFetchRow("SELECT * FROM `ucd_diskio` AS U, `devices` AS D WHERE U.diskio_id = ? AND U.device_id = D.device_id", array($vars['id']));
|
||||
if (is_numeric($vars['id'])) {
|
||||
$disk = dbFetchRow('SELECT * FROM `ucd_diskio` AS U, `devices` AS D WHERE U.diskio_id = ? AND U.device_id = D.device_id', array($vars['id']));
|
||||
|
||||
if (is_numeric($disk['device_id']) && ($auth || device_permitted($disk['device_id'])))
|
||||
{
|
||||
$device = device_by_id_cache($disk['device_id']);
|
||||
if (is_numeric($disk['device_id']) && ($auth || device_permitted($disk['device_id']))) {
|
||||
$device = device_by_id_cache($disk['device_id']);
|
||||
|
||||
$rrd_filename = $config['rrd_dir'] . "/" . $disk['hostname'] . "/ucd_diskio-" . safename($disk['diskio_descr'] . ".rrd");
|
||||
$rrd_filename = $config['rrd_dir'].'/'.$disk['hostname'].'/ucd_diskio-'.safename($disk['diskio_descr'].'.rrd');
|
||||
|
||||
$title = generate_device_link($device);
|
||||
$title .= " :: Disk :: " . htmlentities($disk['diskio_descr']);
|
||||
$auth = TRUE;
|
||||
}
|
||||
$title = generate_device_link($device);
|
||||
$title .= ' :: Disk :: '.htmlentities($disk['diskio_descr']);
|
||||
$auth = true;
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
|
||||
Reference in New Issue
Block a user