summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/graph.php
diff options
context:
space:
mode:
authorSteve Beaver <sbeaver@netgate.com>2017-02-14 16:06:48 -0500
committerSteve Beaver <sbeaver@netgate.com>2017-02-14 16:06:48 -0500
commitcbb82e6b6ca03d59209ef8f76968249ca390a9a2 (patch)
tree0423a998336ecf21d9542877fa7ada393709bf43 /src/usr/local/www/graph.php
parent9f2bbdb44c5700384a37a9586d260492f14f7602 (diff)
downloadpfsense-cbb82e6b6ca03d59209ef8f76968249ca390a9a2.zip
pfsense-cbb82e6b6ca03d59209ef8f76968249ca390a9a2.tar.gz
GET/POST conversions
Diffstat (limited to 'src/usr/local/www/graph.php')
-rw-r--r--src/usr/local/www/graph.php16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/usr/local/www/graph.php b/src/usr/local/www/graph.php
index 1ab5ec7..2d3c1f8 100644
--- a/src/usr/local/www/graph.php
+++ b/src/usr/local/www/graph.php
@@ -41,10 +41,10 @@ header("Cache-Control: no-cache, no-store, must-revalidate"); // HTTP/1.1
header("Pragma: no-cache"); // HTTP/1.0
header("Content-type: image/svg+xml");
-/********** HTTP GET Based Conf ***********/
-$ifnum = @$_GET["ifnum"]; // BSD / SNMP interface name / number
+/********** HTTP REQUEST Based Conf ***********/
+$ifnum = @$_REQUEST["ifnum"]; // BSD / SNMP interface name / number
$ifnum = get_real_interface($ifnum);
-$ifname = @$_GET["ifname"]?$_GET["ifname"]:"Interface $ifnum"; //Interface name that will be showed on top right of graph
+$ifname = @$_REQUEST["ifname"]?$_REQUEST["ifname"]:"Interface $ifnum"; //Interface name that will be showed on top right of graph
/********* Other conf *******/
if (isset($config["widgets"]["trafficgraphs"]["scale_type"])) {
@@ -54,14 +54,14 @@ if (isset($config["widgets"]["trafficgraphs"]["scale_type"])) {
}
$nb_plot=120; //NB plot in graph
-if ($_GET["timeint"]) {
- $time_interval = $_GET["timeint"]; //Refresh time Interval
+if ($_REQUEST["timeint"]) {
+ $time_interval = $_REQUEST["timeint"]; //Refresh time Interval
} else {
$time_interval = 3;
}
-if ($_GET["initdelay"]) {
- $init_delay = $_GET["initdelay"]; //Initial Delay
+if ($_REQUEST["initdelay"]) {
+ $init_delay = $_REQUEST["initdelay"]; //Initial Delay
} else {
$init_delay = 3;
}
@@ -161,7 +161,7 @@ if (typeof getURL == 'undefined') {
contentType : http_request.getResponseHeader("Content-Type") } );
}
}
- http_request.open('GET', url, true);
+ http_request.open('REQUEST', url, true);
http_request.send(null);
}
}
OpenPOWER on IntegriCloud