X509: Missing $

This commit is contained in:
terrafrost 2012-11-13 00:37:54 -06:00
parent 1fd87dcd35
commit d492d19748

View File

@ -2232,7 +2232,7 @@ class File_X509 {
function getDN($format = FILE_X509_DN_ARRAY, $dn = NULL) function getDN($format = FILE_X509_DN_ARRAY, $dn = NULL)
{ {
if (!isset($dn)) { if (!isset($dn)) {
$dn = isset($this->currentCert['tbsCertList']) ? this->currentCert['tbsCertList']['issuer'] : $this->dn; $dn = isset($this->currentCert['tbsCertList']) ? $this->currentCert['tbsCertList']['issuer'] : $this->dn;
} }
switch ((int) $format) { switch ((int) $format) {