summaryrefslogtreecommitdiffstats
path: root/usr/local/www/status_rrd_graph.php
diff options
context:
space:
mode:
Diffstat (limited to 'usr/local/www/status_rrd_graph.php')
-rwxr-xr-xusr/local/www/status_rrd_graph.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/local/www/status_rrd_graph.php b/usr/local/www/status_rrd_graph.php
index cefbbb2..441aa3a 100755
--- a/usr/local/www/status_rrd_graph.php
+++ b/usr/local/www/status_rrd_graph.php
@@ -197,11 +197,11 @@ function get_dates($curperiod, $graph) {
break;
case "year":
$start = mktime(0, 0, 0, 1, 0, ($curyear - $offset));
- $end = mktime(0, 0, 0, 1, 0, (($curyear - $offset) +1));
+ $end = mktime(0, 0, 0, 1, 1, (($curyear - $offset) +1));
break;
case "4year":
$start = mktime(0, 0, 0, 1, 0, (($curyear - 3) - $offset));
- $end = mktime(0, 0, 0, 1, 0, (($curyear - $offset) +1));
+ $end = mktime(0, 0, 0, 1, 1, (($curyear - $offset) +1));
break;
}
$dates = array();
OpenPOWER on IntegriCloud