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

This commit is contained in:
Job Snijders
2015-07-10 13:36:21 +02:00
parent e4f4eb44dc
commit ebd0f6fc35
539 changed files with 13591 additions and 13223 deletions

View File

@@ -2,27 +2,25 @@
$scale_min = 0;
require "includes/graphs/common.inc.php";
require 'includes/graphs/common.inc.php';
$agent_rrd = $config['rrd_dir'] . "/" . $device['hostname'] . "/agent.rrd";
$agent_rrd = $config['rrd_dir'].'/'.$device['hostname'].'/agent.rrd';
if (is_file($agent_rrd)) {
$rrd_filename = $agent_rrd;
}
$ds = "time";
$ds = 'time';
$colour_area = "EEEEEE";
$colour_line = "36393D";
$colour_area = 'EEEEEE';
$colour_line = '36393D';
$colour_area_max = "FFEE99";
$colour_area_max = 'FFEE99';
$graph_max = 1;
$multiplier = 1000;
$multiplier_action = "/";
$graph_max = 1;
$multiplier = 1000;
$multiplier_action = '/';
$unit_text = "Seconds";
$unit_text = 'Seconds';
require "includes/graphs/generic_simplex.inc.php";
?>
require 'includes/graphs/generic_simplex.inc.php';