aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--type/Default.class.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/type/Default.class.php b/type/Default.class.php
index 48852d4..b8fd95e 100644
--- a/type/Default.class.php
+++ b/type/Default.class.php
@@ -185,7 +185,7 @@ class Type_Default {
185 $rrdgraph[] = '-l 0'; 185 $rrdgraph[] = '-l 0';
186 $rrdgraph[] = sprintf('-t "%s on %s"', $this->rrd_title, $this->args['host']); 186 $rrdgraph[] = sprintf('-t "%s on %s"', $this->rrd_title, $this->args['host']);
187 $rrdgraph[] = sprintf('-v "%s"', $this->rrd_vertical); 187 $rrdgraph[] = sprintf('-v "%s"', $this->rrd_vertical);
188 $rrdgraph[] = sprintf('-s -%d', is_numeric($this->seconds) ? $this->seconds : 86400); 188 $rrdgraph[] = sprintf('-s e-%d', is_numeric($this->seconds) ? $this->seconds : 86400);
189 189
190 return $rrdgraph; 190 return $rrdgraph;
191 } 191 }