Merge pull request #2647 from librenms/f0o-hotfix-ssl_service_check_php7

This commit is contained in:
Neil Lathwood
2015-12-19 13:01:14 +00:00

View File

@@ -9,7 +9,7 @@ if( !empty($service['service_ip']) ) {
$cmd .= " ".$service['service_param'];
$check = shell_exec($cmd);
list($check, $time) = split("\|", $check);
list($check, $time) = explode("\|", $check);
if(strstr($check, "SSL_CERT OK")) {
$status = '1';