Commit b95a654c authored by Frank Wall's avatar Frank Wall

allow to use CRLs with CertificateField

parent e7cb49b8
...@@ -73,6 +73,8 @@ class CertificateField extends BaseField ...@@ -73,6 +73,8 @@ class CertificateField extends BaseField
{ {
if (trim(strtolower($value)) == "ca") { if (trim(strtolower($value)) == "ca") {
$this->certificateType = "ca"; $this->certificateType = "ca";
} elseif (trim(strtolower($value)) == "crl") {
$this->certificateType = "crl";
} else { } else {
$this->certificateType = "cert"; $this->certificateType = "cert";
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment