diff options
author | jim-p <jim@pingle.org> | 2010-01-03 12:21:51 -0500 |
---|---|---|
committer | jim-p <jim@pingle.org> | 2010-01-03 12:22:52 -0500 |
commit | e665b8ae8254547d57624aa6b604960e682d0e82 (patch) | |
tree | fa780c3c4339455fdde5309bd2cfed726f4108b9 /usr/local/www | |
parent | 2ce5754520374d640f2b6d14ff7dc6de484a5ec1 (diff) | |
download | pfsense-e665b8ae8254547d57624aa6b604960e682d0e82.zip pfsense-e665b8ae8254547d57624aa6b604960e682d0e82.tar.gz |
Add cellular tab to RRD settings page, as it was missing. Noticed-by: xbipin on forum.
Diffstat (limited to 'usr/local/www')
-rwxr-xr-x | usr/local/www/status_rrd_graph_settings.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/usr/local/www/status_rrd_graph_settings.php b/usr/local/www/status_rrd_graph_settings.php index 05687f2..6cab565 100755 --- a/usr/local/www/status_rrd_graph_settings.php +++ b/usr/local/www/status_rrd_graph_settings.php @@ -105,6 +105,8 @@ include("head.inc"); $tab_array[] = array("QueueDrops", $tabactive, "status_rrd_graph.php?cat=queuedrops"); if($curcat == "wireless") { $tabactive = True; } else { $tabactive = False; } $tab_array[] = array("Wireless", $tabactive, "status_rrd_graph.php?cat=wireless"); + if($curcat == "cellular") { $tabactive = True; } else { $tabactive = False; } + $tab_array[] = array("Cellular", $tabactive, "status_rrd_graph.php?cat=cellular"); if($curcat == "settings") { $tabactive = True; } else { $tabactive = False; } $tab_array[] = array("Settings", $tabactive, "status_rrd_graph_settings.php"); display_top_tabs($tab_array); |