diff options
author | jim-p <jimp@pfsense.org> | 2014-09-11 13:22:24 -0400 |
---|---|---|
committer | jim-p <jimp@pfsense.org> | 2014-09-11 13:23:59 -0400 |
commit | 929dfb4cb9388ba550f29700f17134508f8f866d (patch) | |
tree | 0d37ba530e6aa8d8184d6a3c5c1417bfab4e854b | |
parent | ee4da773ebb4b9a5817a45e967e31ac624b7368d (diff) | |
download | pfsense-929dfb4cb9388ba550f29700f17134508f8f866d.zip pfsense-929dfb4cb9388ba550f29700f17134508f8f866d.tar.gz |
Add pages missing from the Status > Traffic Graph privilege that are required for the full page to load
-rw-r--r-- | etc/inc/priv.defs.inc | 2 | ||||
-rwxr-xr-x | usr/local/www/status_graph.php | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/etc/inc/priv.defs.inc b/etc/inc/priv.defs.inc index 19340a9..89eda1a 100644 --- a/etc/inc/priv.defs.inc +++ b/etc/inc/priv.defs.inc @@ -992,6 +992,8 @@ $priv_list['page-status-trafficgraph']['descr'] = gettext("Allow access to the ' $priv_list['page-status-trafficgraph']['match'] = array(); $priv_list['page-status-trafficgraph']['match'][] = "status_graph.php*"; $priv_list['page-status-trafficgraph']['match'][] = "bandwidth_by_ip.php*"; +$priv_list['page-status-trafficgraph']['match'][] = "graph.php*"; +$priv_list['page-status-trafficgraph']['match'][] = "ifstats.php*"; $priv_list['page-status-cpuload'] = array(); $priv_list['page-status-cpuload']['name'] = gettext("WebCfg - Status: CPU load page"); diff --git a/usr/local/www/status_graph.php b/usr/local/www/status_graph.php index 911652e..4786fa1 100755 --- a/usr/local/www/status_graph.php +++ b/usr/local/www/status_graph.php @@ -41,6 +41,8 @@ ##|*DESCR=Allow access to the 'Status: Traffic Graph' page. ##|*MATCH=status_graph.php* ##|*MATCH=bandwidth_by_ip.php* +##|*MATCH=graph.php* +##|*MATCH=ifstats.php* ##|-PRIV require("guiconfig.inc"); |