From 7b06ec88bb349ba31507dd900cc27697dead2d1b Mon Sep 17 00:00:00 2001 From: laf Date: Sun, 24 May 2015 19:09:13 +0100 Subject: [PATCH] Removed lower limit for sensor graphs so negative values will show --- html/includes/graphs/device/sensor.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/includes/graphs/device/sensor.inc.php b/html/includes/graphs/device/sensor.inc.php index e677e5b48..bf75c8287 100644 --- a/html/includes/graphs/device/sensor.inc.php +++ b/html/includes/graphs/device/sensor.inc.php @@ -4,7 +4,7 @@ include("includes/graphs/common.inc.php"); if ($_GET['width'] > "300") { $descr_len = "40"; } else { $descr_len = "22"; } -$rrd_options .= " -l 0 -E "; +$rrd_options .= " -E "; $iter = "1"; $rrd_options .= " COMMENT:'".str_pad($unit_long,$descr_len)." Cur Min Max\\n'";