allow to use CRLs with CertificateField

This commit is contained in:
Frank Wall 2016-08-01 16:58:03 +02:00
parent e7cb49b8af
commit b95a654c46

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";
}