diff options
author | Erik Fonnesbeck <efonnes@gmail.com> | 2010-12-31 01:34:56 -0700 |
---|---|---|
committer | Erik Fonnesbeck <efonnes@gmail.com> | 2010-12-31 01:40:07 -0700 |
commit | 29640ceef3b1ee281dae21ab41cd2ff5703f43c8 (patch) | |
tree | b2e5176ed0ed64872c5c91d906539a634415dbe9 /usr/local | |
parent | bf924b162a6f7ab3bae5f5d5ee93c52c5345fb13 (diff) | |
download | pfsense-29640ceef3b1ee281dae21ab41cd2ff5703f43c8.zip pfsense-29640ceef3b1ee281dae21ab41cd2ff5703f43c8.tar.gz |
Use correct variable for this condition.
Diffstat (limited to 'usr/local')
-rwxr-xr-x | usr/local/www/status_rrd_graph.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/status_rrd_graph.php b/usr/local/www/status_rrd_graph.php index c26663d..5c05ceb 100755 --- a/usr/local/www/status_rrd_graph.php +++ b/usr/local/www/status_rrd_graph.php @@ -228,7 +228,7 @@ function get_dates($curperiod, $graph) { $starthour = 16; if($curhour < 16) $starthour = 8; - if($starthour < 8) + if($curhour < 8) $starthour = 0; switch($offset) { |