Move mtu_fix to the right place (fixes #94)
authorSteven Barth <steven@midlink.org>
Sun, 29 Nov 2009 13:45:56 +0000 (13:45 +0000)
committerSteven Barth <steven@midlink.org>
Sun, 29 Nov 2009 13:45:56 +0000 (13:45 +0000)
applications/luci-fw/luasrc/model/cbi/luci_fw/traffic.lua
applications/luci-fw/luasrc/model/cbi/luci_fw/zones.lua

index f4c5630a3917aced2a1dc30f566e5210cd485743..eaaaf6cb97c2983ad053c05569a06fd6aa712fb1 100644 (file)
@@ -21,7 +21,6 @@ s.anonymous = true
 
 iface = s:option(ListValue, "src", translate("Source"))
 oface = s:option(ListValue, "dest", translate("Destination"))
-s:option(Flag, "mtu_fix", translate("MSS Clamping"))
 
 luci.model.uci.cursor():foreach("firewall", "zone",
        function (section)
index eacb00f4f487e34915e0b8d8f58e7469810dcf3f..3c31d957f7a7a567a87a4aa2cecfca08e0db3bb3 100644 (file)
@@ -65,6 +65,7 @@ for i, v in ipairs(p) do
 end
 
 s:option(Flag, "masq")
+s:option(Flag, "mtu_fix", translate("MSS Clamping"))
 
 net = s:option(MultiValue, "network")
 net.template = "cbi/network_netlist"