diff options
author | Paul Oranje <p.oranje@xs4all.nl> | 2015-02-04 17:51:25 +0100 |
---|---|---|
committer | Paul Oranje <p.oranje@xs4all.nl> | 2015-02-04 17:51:25 +0100 |
commit | 42e228097703385373af474a5809c33623d4fe97 (patch) | |
tree | 4495b9e9bff4870e25e4cfad78ba48b8a622fc3c /protocols | |
parent | b6e53737642317ade9f47fb4b857c4c9e0711140 (diff) |
luci-proto-ipv6: fix typo in aiccu mtu range
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_aiccu.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_aiccu.lua b/protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_aiccu.lua index 0e9fa06c9..567663981 100644 --- a/protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_aiccu.lua +++ b/protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_aiccu.lua @@ -130,6 +130,6 @@ ttl.placeholder = "64" mtu = section:taboption("advanced", Value, "mtu", translate("Use MTU on tunnel interface")) translate("minimum 1280, maximum 1480")) -mtu.datatype = "range(1280-1480)" +mtu.datatype = "range(1280,1480)" mtu.placeholder = "1280" |