Apply "Squiz" code style on old (pre-2014) files

This commit is contained in:
Job Snijders
2015-07-11 16:12:35 +02:00
parent e4f4eb44dc
commit ebd0f6fc35
539 changed files with 13587 additions and 13219 deletions
@@ -1,20 +1,18 @@
<?php
$rrd_filename = $config['rrd_dir'] . "/" . $device['hostname'] . "/" . safename("fortigate_cpu.rrd");
$rrd_filename = $config['rrd_dir'].'/'.$device['hostname'].'/'.safename('fortigate_cpu.rrd');
include("includes/graphs/common.inc.php");
require 'includes/graphs/common.inc.php';
$ds = "LOAD";
$ds = 'LOAD';
$colour_area = "9999cc";
$colour_line = "0000cc";
$colour_area = '9999cc';
$colour_line = '0000cc';
$colour_area_max = "9999cc";
$colour_area_max = '9999cc';
$graph_max = 1;
$unit_text = "% CPU";
$unit_text = '% CPU';
include("includes/graphs/generic_simplex.inc.php");
?>
require 'includes/graphs/generic_simplex.inc.php';