From 161cd05c63acb5c200adf65572cad2db2a259a61 Mon Sep 17 00:00:00 2001 From: smos Date: Thu, 15 Jul 2010 20:01:05 +0200 Subject: Remove debugging line Improve the scale so that it matches up the length of the period. Style fixes --- usr/local/www/status_rrd_graph.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'usr/local/www/status_rrd_graph.php') 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(); -- cgit v1.1