Merge pull request #1096 from fraenki/certfield_crl

allow to use CRLs with CertificateField
This commit is contained in:
Ad Schellevis 2016-08-01 17:01:56 +02:00 committed by GitHub
commit 7d1042048a

View File

@ -73,6 +73,8 @@ class CertificateField extends BaseField
{
if (trim(strtolower($value)) == "ca") {
$this->certificateType = "ca";
} elseif (trim(strtolower($value)) == "crl") {
$this->certificateType = "crl";
} else {
$this->certificateType = "cert";
}