Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,19 @@ All notable changes to this project will be documented in this file. Dates are d

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

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

- RDKB-62411:Alert message for Invalid password login is not coming as expectedcheck.jst [`#87`](https://github.com/rdkcentral/webui/pull/87)
- Merge tag '1.4.1' into develop [`4cff486`](https://github.com/rdkcentral/webui/commit/4cff486169ee202111aa8ca5575b8c454a035443)

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

> 17 December 2025

- RDKB-62740: Disable 320MHz for 11ax mode ion 6GHz [`#83`](https://github.com/rdkcentral/webui/pull/83)
- RDKBDEV-3296: Xfinity Connection status page returns error 404 Not Found [`#49`](https://github.com/rdkcentral/webui/pull/49)
- RDKB-62532: Removing 400ns Guard Interval for 11ax/be for WiFi standards [`#77`](https://github.com/rdkcentral/webui/pull/77)
- Add changelog for release 1.4.1 [`c4ef018`](https://github.com/rdkcentral/webui/commit/c4ef0187a50539ae1fdd2af01856e2030f85aa3b)
- Merge tag '1.4.0' into develop [`b6ddf1f`](https://github.com/rdkcentral/webui/commit/b6ddf1f3ffef809004a5cd547da37452c1c8209c)

#### [1.4.0](https://github.com/rdkcentral/webui/compare/1.3.0...1.4.0)
Expand Down
5 changes: 5 additions & 0 deletions source/Styles/xb3/jst/check.jst
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,12 @@ else
}
if($flag==0){
// session_destroy();
$partnersId = getStr("Device.DeviceInfo.X_RDKCENTRAL-COM_Syndication.PartnerId");
if (strpos($partnersId, "sky-") !== false) {
sendError( '<script type="text/javascript"> alert($.i18n("Username or password is incorrect!"));history.back(); </script>');
} else {
sendError( '<script type="text/javascript"> alert($.i18n("Authentication failed. The default password is printed on the bottom or back of your router - use this if you haven’t already changed it."));history.back(); </script>');
}
}
}
else
Expand Down