mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-11-16 10:15:14 +00:00
ASN1: fix PHP 7.4 deprecation
This commit is contained in:
parent
511f55de3d
commit
e473078703
@ -947,7 +947,7 @@ class File_ASN1
|
|||||||
if ($mapping['type'] == FILE_ASN1_TYPE_SET) {
|
if ($mapping['type'] == FILE_ASN1_TYPE_SET) {
|
||||||
sort($value);
|
sort($value);
|
||||||
}
|
}
|
||||||
$value = implode($value, '');
|
$value = implode('', $value);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user