summaryrefslogtreecommitdiffstats
path: root/usr/local/www/status_graph.php
diff options
context:
space:
mode:
authorErmal <eri@pfsense.org>2010-05-13 20:39:17 +0000
committerErmal <eri@pfsense.org>2010-05-13 20:39:28 +0000
commite774e3b317deeef6f3a1323527f1de10af3ea422 (patch)
tree70b3b418bee80eb30ce3a64bc93d63245c24883f /usr/local/www/status_graph.php
parent6894b25a0d98f471549c1f0686eb798df2aaa14c (diff)
downloadpfsense-e774e3b317deeef6f3a1323527f1de10af3ea422.zip
pfsense-e774e3b317deeef6f3a1323527f1de10af3ea422.tar.gz
Its bits/sec now.
Diffstat (limited to 'usr/local/www/status_graph.php')
-rwxr-xr-xusr/local/www/status_graph.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/local/www/status_graph.php b/usr/local/www/status_graph.php
index e194b47..a4f940b 100755
--- a/usr/local/www/status_graph.php
+++ b/usr/local/www/status_graph.php
@@ -114,12 +114,12 @@ function updateBandwidthHosts(data){
//update bandwidth inbound to host
var hostbandwidthInID = "bandwidthin" + y;
var hostbandwidthin = d.getElementById(hostbandwidthInID);
- hostbandwidthin.innerHTML = hostinfo[1] + " Bytes/sec";
+ hostbandwidthin.innerHTML = hostinfo[1] + " Bits/sec";
//update bandwidth outbound from host
var hostbandwidthOutID = "bandwidthout" + y;
var hostbandwidthOut = d.getElementById(hostbandwidthOutID);
- hostbandwidthOut.innerHTML = hostinfo[2] + " Bytes/sec";
+ hostbandwidthOut.innerHTML = hostinfo[2] + " Bits/sec";
//make the row appear if hidden
var rowid = "host" + y;
OpenPOWER on IntegriCloud