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 f4c5630..eaaaf6c 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 eacb00f..3c31d95 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"