diff options
author | jim-p <jim@pingle.org> | 2010-02-15 10:00:32 -0500 |
---|---|---|
committer | jim-p <jim@pingle.org> | 2010-02-15 10:00:32 -0500 |
commit | bb641bf8978c07e54b57885f56b0f9543a7cd39f (patch) | |
tree | 5fa3d1add090214b248daae4bed8f63c1498ab56 /usr/local/www | |
parent | a5070443e9c5e3703bbdb6c49fd0b262b4367291 (diff) | |
download | pfsense-bb641bf8978c07e54b57885f56b0f9543a7cd39f.zip pfsense-bb641bf8978c07e54b57885f56b0f9543a7cd39f.tar.gz |
Missing counter variable initialization.
Diffstat (limited to 'usr/local/www')
-rw-r--r-- | usr/local/www/status_rrd_graph_img.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/usr/local/www/status_rrd_graph_img.php b/usr/local/www/status_rrd_graph_img.php index 905413d..63657d0 100644 --- a/usr/local/www/status_rrd_graph_img.php +++ b/usr/local/www/status_rrd_graph_img.php @@ -703,6 +703,7 @@ elseif((strstr($curdatabase, "-queuedrops.rrd")) && (file_exists("$rrddbpath$cur $graphcmd .= "--height 200 --width 620 -x \"$scale\" "; if ($altq) { $a_queues =& $altq->get_queue_list(); + $t = 0; } else { $a_queues = array(); $i = 0; |