Revert "Fix coding style old files (part 2)"

This commit is contained in:
Daniel Preussker
2015-07-15 08:09:10 +00:00
parent 4ebabc634a
commit ba90b85f9f
731 changed files with 33750 additions and 37288 deletions
@@ -1,14 +1,15 @@
<?php
require 'includes/graphs/common.inc.php';
include("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 ";
}