mirror of
https://github.com/lucaspalomodevelop/core.git
synced 2026-03-15 17:14:46 +00:00
Merge pull request #1096 from fraenki/certfield_crl
allow to use CRLs with CertificateField
This commit is contained in:
commit
7d1042048a
@ -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";
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user