summaryrefslogtreecommitdiffhomepage
path: root/modules
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2010-11-18 14:54:46 +0000
committerJo-Philipp Wich <jow@openwrt.org>2010-11-18 14:54:46 +0000
commit895c65738100e29ce28ec9e65d060ce8e7cb3952 (patch)
tree676b3f2daabdd9a33d6b140dc1bd3997e1a9c36f /modules
parentd41175aaa459ae867ed50247d972a1ad7f0e6bb1 (diff)
modules/admin-full: fix swapped RX/TX in iface overview (#165)
Diffstat (limited to 'modules')
-rw-r--r--modules/admin-full/luasrc/view/admin_network/iface_overview.htm2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/admin-full/luasrc/view/admin_network/iface_overview.htm b/modules/admin-full/luasrc/view/admin_network/iface_overview.htm
index 5932a9031..957d91749 100644
--- a/modules/admin-full/luasrc/view/admin_network/iface_overview.htm
+++ b/modules/admin-full/luasrc/view/admin_network/iface_overview.htm
@@ -156,7 +156,7 @@ $Id$
t.innerHTML = String.format(
'<strong><%:RX%></strong>: %.2f <%:KB%> (%d <%:Pkts.%>)<br />' +
'<strong><%:TX%></strong>: %.2f <%:KB%> (%d <%:Pkts.%>)<br />',
- txb, txp, rxb, rxp
+ rxb, rxp, txb, txp
);
}
}