Indicate unknown for the HTTPS state of a sub-domain only when the type has an https option

This commit is contained in:
Kienan Stewart 2018-07-12 10:42:58 -04:00 committed by Camille Lafitte
parent a9f6e757cd
commit b9b0f6181b
1 changed files with 6 additions and 0 deletions

View File

@ -197,6 +197,12 @@ if (!$r["sub"][$i]["only_dns"]) {
__("HTTP and HTTPS"); __("HTTP and HTTPS");
break; break;
default: default:
if ($r['sub'][$i]['has_https_option']) {
__("Unknown");
}
else {
__('Not applicable');
}
break; break;
} }
} }