Skip to content

Commit 8da917a

Browse files
Merge branch 'release/2.0.1'
2 parents a723e5d + 47b33e5 commit 8da917a

4 files changed

Lines changed: 27 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,18 @@ All notable changes to this project will be documented in this file. Dates are d
44

55
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
66

7-
#### [2.0.0](https://github.com/rdkcentral/webui/compare/1.4.1...2.0.0)
7+
#### [2.0.1](https://github.com/rdkcentral/webui/compare/2.0.0...2.0.1)
8+
9+
- RDKBACCL-1223,RDKBACCL-1224: "Local IP Network" and "Port forwarding add" from WebUI results in "500 Internal Server Error" [`#82`](https://github.com/rdkcentral/webui/pull/82)
10+
- RDKB-62741-Observed Guard Interval is not updating from 400ns when switch from a/n or a/n/c mode to be mode [`#90`](https://github.com/rdkcentral/webui/pull/90)
11+
- Merge tag '2.0.0' into develop [`d534467`](https://github.com/rdkcentral/webui/commit/d5344676790294bf2955e2ca2aaeb71f37db7b22)
12+
13+
### [2.0.0](https://github.com/rdkcentral/webui/compare/1.4.1...2.0.0)
14+
15+
> 7 January 2026
816
917
- RDKB-62411:Alert message for Invalid password login is not coming as expectedcheck.jst [`#87`](https://github.com/rdkcentral/webui/pull/87)
18+
- Add changelog for release 2.0.0 [`ce3f007`](https://github.com/rdkcentral/webui/commit/ce3f007e2397e9f0b12b1ed95c2fdfd64ef6f95e)
1019
- Merge tag '1.4.1' into develop [`4cff486`](https://github.com/rdkcentral/webui/commit/4cff486169ee202111aa8ca5575b8c454a035443)
1120

1221
#### [1.4.1](https://github.com/rdkcentral/webui/compare/1.4.0...1.4.1)

source/Styles/xb3/jst/local_ip_configuration.jst

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1323,7 +1323,13 @@ $('#restore_ipv6').click(function(e) {
13231323
//2040::/64, 2040:1::/64, 2040:1:2::/64 and 2040:1:2:3::/64
13241324
$prefix_arr = explode('::/', getStr("Device.IP.Interface.1.IPv6Prefix.1.Prefix"));
13251325
$ipv6_prefix_arr = explode(':', $prefix_arr[0]);
1326-
$ipa_size = count($ipv6_prefix_arr);
1326+
if($ipv6_prefix_arr == undefined)
1327+
{
1328+
$ipa_size = 0;
1329+
$ipv6_prefix_arr = 0;
1330+
}
1331+
else
1332+
$ipa_size = count($ipv6_prefix_arr);
13271333
$v6_begin_addr = $dhcpv6_value["v6_begin_addr"];
13281334
$v6_beg_add_arr = explode(':', $v6_begin_addr);
13291335
?>

source/Styles/xb3/jst/port_forwarding_add.jst

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -483,7 +483,13 @@ $('#device').click(function(){
483483
</script>
484484
<?%
485485
$ipv6_prefix_arr = explode(':', $prefix_arr[0]);
486-
$ipa_size = count($ipv6_prefix_arr);
486+
if($ipv6_prefix_arr == undefined)
487+
{
488+
$ipa_size = 0;
489+
$ipv6_prefix_arr = 0;
490+
}
491+
else
492+
$ipa_size = count($ipv6_prefix_arr);
487493
?>
488494
<?% if($CloudUIEnable == "true"){ ?>
489495
<div id="content">

source/Styles/xb6/jst/actionHandler/ajaxSet_wireless_network_configuration_onewifi.jst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,9 @@ else
208208
if (("2" != $i) && ("20MHz" != $arConfig['channel_bandwidth'])){
209209
setStr("Device.WiFi.Radio."+$r+".ExtensionChannel", $arConfig['ext_channel'], false);
210210
}
211+
if (("400nsec" == $arConfig['guard_interval']) && isValInArray($arConfig['wireless_mode'], ["g,n,ax,be", "g,n,ax", "a,n,ac,ax,be", "a,n,ac,ax"])) {
212+
setStr("Device.WiFi.Radio."+$r+".GuardInterval", "Auto", false);
213+
}
211214
//apply once
212215
// setStr("Device.WiFi.Radio."+$r+".X_CISCO_COM_ApplySetting", "true", true);
213216
setStr("Device.WiFi.ApplyRadioSettings", "true", true);

0 commit comments

Comments
 (0)