X509: Array -> array (CS consistency)

This commit is contained in:
terrafrost 2014-03-29 15:26:50 -05:00
parent ea4dc53a06
commit dfa583b9ea

View File

@ -3132,9 +3132,9 @@ class File_X509
{
$year = @gmdate("Y", @strtotime($date)); // the same way ASN1.php parses this
if ($year < 2050) {
return Array('utcTime' => $date);
return array('utcTime' => $date);
} else {
return Array('generalTime' => $date);
return array('generalTime' => $date);
}
}