diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2010-11-18 14:54:46 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2010-11-18 14:54:46 +0000 |
commit | 895c65738100e29ce28ec9e65d060ce8e7cb3952 (patch) | |
tree | 676b3f2daabdd9a33d6b140dc1bd3997e1a9c36f | |
parent | d41175aaa459ae867ed50247d972a1ad7f0e6bb1 (diff) |
modules/admin-full: fix swapped RX/TX in iface overview (#165)
-rw-r--r-- | modules/admin-full/luasrc/view/admin_network/iface_overview.htm | 2 |
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 ); } } |