Fix coding style part 2

This commit is contained in:
Job Snijders
2015-07-14 17:41:54 +02:00
parent ad9590df9b
commit 361653aa81
731 changed files with 37529 additions and 33991 deletions
@@ -1,15 +1,14 @@
<?php
include("includes/graphs/common.inc.php");
require 'includes/graphs/common.inc.php';
$rrdfilename = $config['rrd_dir'] . "/".$device['hostname']."/siklu-wireless.rrd";
$rrdfilename = $config['rrd_dir'].'/'.$device['hostname'].'/siklu-wireless.rrd';
if (file_exists($rrdfilename)) {
$rrd_options .= " COMMENT:'Hz Now Min Max\\n'";
$rrd_options .= " DEF:rfOperFreq=".$rrdfilename.":rfOperFreq:AVERAGE ";
$rrd_options .= ' DEF:rfOperFreq='.$rrdfilename.':rfOperFreq:AVERAGE ';
$rrd_options .= " LINE1:rfOperFreq#CC0000:'GHz ' ";
$rrd_options .= " GPRINT:rfOperFreq:LAST:%3.2lf ";
$rrd_options .= " GPRINT:rfOperFreq:MIN:%3.2lf ";
$rrd_options .= " GPRINT:rfOperFreq:MAX:%3.2lf\\\l ";
$rrd_options .= ' GPRINT:rfOperFreq:LAST:%3.2lf ';
$rrd_options .= ' GPRINT:rfOperFreq:MIN:%3.2lf ';
$rrd_options .= ' GPRINT:rfOperFreq:MAX:%3.2lf\\\l ';
}