summaryrefslogtreecommitdiffhomepage
path: root/protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol
diff options
context:
space:
mode:
authorJo-Philipp Wich <jo@mein.io>2021-03-29 20:34:43 +0200
committerJo-Philipp Wich <jo@mein.io>2021-03-29 22:35:46 +0200
commit7d49508480446febe4ed0de929f83ea923c98324 (patch)
treef869cf2905be8b79d99a9f4a8c1f37e63aff2116 /protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol
parent935e9a3c3430db5fad1004926ddfa2e35a950be5 (diff)
protocols: fix interface.ipv6 vs. device.ipv6 option conflict
Ref: https://forum.openwrt.org/t/pppoe-disable-ipv6/92548 Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol')
-rw-r--r--protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js b/protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js
index 8496b7de3c..3195592d97 100644
--- a/protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js
+++ b/protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js
@@ -94,7 +94,8 @@ return network.registerProtocol('ncm', {
o.placeholder = '*99***1#';
if (L.hasSystemFeature('ipv6')) {
- o = s.taboption('advanced', form.ListValue, 'ipv6', _('Obtain IPv6-Address'));
+ o = s.taboption('advanced', form.ListValue, 'ppp_ipv6', _('Obtain IPv6-Address'));
+ o.ucioption = 'ipv6';
o.value('auto', _('Automatic'));
o.value('0', _('Disabled'));
o.value('1', _('Manual'));