summaryrefslogtreecommitdiffstats
path: root/usr/local/www/status_graph.php
diff options
context:
space:
mode:
authorErmal Luçi <eri@pfsense.org>2008-09-12 22:54:43 +0000
committerErmal Luçi <eri@pfsense.org>2008-09-12 22:54:43 +0000
commit872ce0dd45e0c7733daee13287ac29dbad1dc744 (patch)
treeba1267d6b1bc59c03b755cde73f2b16aa77bd04c /usr/local/www/status_graph.php
parentfb707f4a3b00a05c441a19eb53ae1d33e6a342d3 (diff)
downloadpfsense-872ce0dd45e0c7733daee13287ac29dbad1dc744.zip
pfsense-872ce0dd45e0c7733daee13287ac29dbad1dc744.tar.gz
Fix the Status->Traffic Graph graphic.
Diffstat (limited to 'usr/local/www/status_graph.php')
-rwxr-xr-xusr/local/www/status_graph.php19
1 files changed, 7 insertions, 12 deletions
diff --git a/usr/local/www/status_graph.php b/usr/local/www/status_graph.php
index df1a83f..2b58bad 100755
--- a/usr/local/www/status_graph.php
+++ b/usr/local/www/status_graph.php
@@ -52,16 +52,11 @@ if ($_POST['height'])
else
$height = "275";
-/* link the ipsec interface magically */
-$config['interfaces']['ipsec']['if'] = "enc0";
-if ($_GET['if']) {
+if ($_GET['if'])
$curif = $_GET['if'];
- $ifnum = $config['interfaces'][$curif]['if'];
-} else {
+else
$curif = "wan";
- $ifnum = get_real_wan_interface();
-}
$pgtitle = array("Status","Traffic Graph");
include("head.inc");
@@ -73,9 +68,9 @@ include("head.inc");
<?php
$ifdescrs = get_configured_interface_with_descr();
-if((isset($config['ipsec']['enable'])) || (isset($config['ipsec']['mobileclients']['enable']))) {
- $ifdescrs['ipsec'] = "IPsec";
-}
+/* link the ipsec interface magically */
+if (isset($config['ipsec']['enable']) || isset($config['ipsec']['mobileclients']['enable']))
+ $ifdescrs['enc0'] = "IPsec";
?>
<form name="form1" action="status_graph.php" method="get" style="padding-bottom: 10px; margin-bottom: 14px; border-bottom: 1px solid #999999">
@@ -95,8 +90,8 @@ foreach ($ifdescrs as $ifn => $ifd) {
</form>
<p>
<div align="center">
- <object data="graph.php?ifnum=<?=$ifnum;?>&amp;ifname=<?=rawurlencode($ifdescrs[$curif]);?>" type="image/svg+xml" width="550" height="275">
- <param name="src" value="graph.php?ifnum=<?=$ifnum;?>&amp;ifname=<?=rawurlencode($ifdescrs[$curif]);?>" />
+ <object data="graph.php?ifnum=<?=$curif;?>&amp;ifname=<?=rawurlencode($ifdescrs[$curif]);?>" type="image/svg+xml" width="550" height="275">
+ <param name="src" value="graph.php?ifnum=<?=$curif;?>&amp;ifname=<?=rawurlencode($ifdescrs[$curif]);?>" />
Your browser does not support the type SVG! You need to either use Firefox or download the Adobe SVG plugin.
</object>
</div>
OpenPOWER on IntegriCloud