From d19ff6b927645737d115d7c8e0b8157f0b6ebd0c Mon Sep 17 00:00:00 2001 From: Geert Hauwaerts Date: Sun, 21 Feb 2010 14:46:22 +0000 Subject: [PATCH] - BUGFIX: Syntax error fix. git-svn-id: http://www.observium.org/svn/observer/trunk@917 61d68cd4-352d-0410-923a-c4978735b2b8 --- includes/polling/temperatures.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/polling/temperatures.inc.php b/includes/polling/temperatures.inc.php index 1ec599e46..c188b82fd 100755 --- a/includes/polling/temperatures.inc.php +++ b/includes/polling/temperatures.inc.php @@ -16,7 +16,7 @@ while($temperature = mysql_fetch_array($temp_data)) { sleep(1); # Give the TME some time to reset } - if ($temperature['temp_precision']) { $temp = $temp / $temperature['temp_precision'];p } + if ($temperature['temp_precision']) { $temp = $temp / $temperature['temp_precision']; } $temprrd = $config['rrd_dir'] . "/" . $device['hostname'] . "/" . safename("temp-" . $temperature['temp_descr'] . ".rrd");