Skip to content
Open
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
14 changes: 12 additions & 2 deletions source/Styles/xb6/jst/network_setup.jst
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?%
/*
If not stated otherwise in this file or this component's Licenses.txt file the

Check failure on line 3 in source/Styles/xb6/jst/network_setup.jst

View workflow job for this annotation

GitHub Actions / call-fossid-workflow / Fossid Annotate PR

FossID License Issue Detected

Source code with 'BSD-3-Clause' license found in local file 'source/Styles/xb6/jst/network_setup.jst' (Match: rdkb/components/opensource/ccsp/webui-bwg/rdkb/components/opensource/ccsp/webui-bwg/1, 880 lines, url: https://code.rdkcentral.com/r/plugins/gitiles/rdkb/components/opensource/ccsp/webui-bwg/+archive/RDKB-TEST-RELEASE-1.tar.gz, file: source/Styles/xb3/code/comcast_network.php)

Check failure on line 3 in source/Styles/xb6/jst/network_setup.jst

View workflow job for this annotation

GitHub Actions / call-fossid-workflow / Fossid Annotate PR

FossID License Issue Detected

Source code with 'MIT' license found in local file 'source/Styles/xb6/jst/network_setup.jst' (Match: rdkb/components/opensource/ccsp/webui/rdkb/components/opensource/ccsp/webui/1, 991 lines, url: https://code.rdkcentral.com/r/plugins/gitiles/rdkb/components/opensource/ccsp/webui/+archive/RDKB-TEST-RELEASE-1.tar.gz, file: source/Styles/xb6/code/network_setup.php)
following copyright and licenses apply:

Copyright 2018 RDK Management
Expand Down Expand Up @@ -337,12 +337,22 @@
array_push($dns_v6, $val);
}
}
if (isset($dns_v4[0])) echo( $dns_v4[0]);
if($mapT == 'MAPT') {
echo ($dns_v4[0] = '-NA-');
} else {
if (isset($dns_v4[0])) echo( $dns_v4[0]);
}
?>
</span>
</div>
<div class="form-row odd">
<span class="readonlyLabel">Secondary DNS Server (IPv4):</span> <span class="value"><?% if (isset($dns_v4[1])) echo( $dns_v4[1]);?></span>
<span class="readonlyLabel">Secondary DNS Server (IPv4):</span>
<span class="value"><?% if($mapT == 'MAPT') {
echo ($dns_v4[1] = '-NA-');
} else {
if (isset($dns_v4[1])) echo( $dns_v4[1]);
}
?></span>
</div>
<div class="form-row ">
<span class="readonlyLabel">Primary DNS Server (IPv6):</span> <span class="value"><?% if (isset($dns_v6[0])) echo( $dns_v6[0]);?></span>
Expand Down
Loading