Fixes #90

Merged
mtrossevin merged 5 commits from unstable into master 2023-12-06 10:49:04 +01:00
2 changed files with 5 additions and 0 deletions
Showing only changes of commit fd0f03ab05 - Show all commits

View file

@ -20,6 +20,8 @@ The **patch** part changes is incremented if multiple releases happen the same m
### Fixed
* letsencrypt: Add required check when retrieving certificate. (Avoid TypeError.)
### Removed
### Security

View file

@ -157,6 +157,9 @@ class LetsEncrypt
{
$stream = stream_context_create(array("ssl" => array("capture_peer_cert" => true)));
$read = stream_socket_client("ssl://" . $domain . ":443", $errno, $errstr, 10, STREAM_CLIENT_CONNECT, $stream);
if ($read === false) {
return false;
}
$cont = stream_context_get_params($read);
return $cont;