From 895c65738100e29ce28ec9e65d060ce8e7cb3952 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Thu, 18 Nov 2010 14:54:46 +0000 Subject: [PATCH] modules/admin-full: fix swapped RX/TX in iface overview (#165) --- modules/admin-full/luasrc/view/admin_network/iface_overview.htm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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( '<%:RX%>: %.2f <%:KB%> (%d <%:Pkts.%>)
' + '<%:TX%>: %.2f <%:KB%> (%d <%:Pkts.%>)
', - txb, txp, rxb, rxp + rxb, rxp, txb, txp ); } } -- 2.11.0