mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-12-25 03:16:02 +00:00
X509: apparently list() works differently in 5.6 than in 7.0+
This commit is contained in:
parent
acc2657511
commit
07f728546b
@ -671,11 +671,10 @@ class X509
|
||||
private function mapOutExtensions(&$root, $path)
|
||||
{
|
||||
foreach ($this->extensionValues as $id => $value) {
|
||||
list($critical, $value) = $value;
|
||||
$root['tbsCertificate']['extensions'][] = [
|
||||
'extnId' => $id,
|
||||
'extnValue' => $value,
|
||||
'critical' => $critical,
|
||||
'extnValue' => $value[1],
|
||||
'critical' => $value[0],
|
||||
];
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user