modules/admin-full: fix swapped RX/TX in iface overview (#165)

This commit is contained in:
Jo-Philipp Wich 2010-11-18 14:54:46 +00:00
parent d41175aaa4
commit 895c657381

View file

@ -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
);
}
}