Skip to content

Commit

Permalink
Fix missing semicolon in example
Browse files Browse the repository at this point in the history
  • Loading branch information
hyper-prog committed Feb 19, 2021
1 parent 3b44f45 commit 71f94f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion EXAMPLES/complex_docker_compose/send_sample_request.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ function SendHttpPostWithCert($url, $postdata, $certfile, $keyfile)
$result = curl_exec($curl);
$info = curl_getinfo($curl,CURLINFO_CERTINFO);

print "You can check this certificate:"
print "You can check this certificate:";
print "\n=============================\n";
$c = $info[0]['Cert'];
$c = preg_replace('/\-+BEGIN CERTIFICATE\-+/','',$c);
Expand Down

0 comments on commit 71f94f8

Please sign in to comment.