ASN1: fix PHP 7.4 deprecation

This commit is contained in:
terrafrost 2019-08-03 07:27:26 -05:00
parent 511f55de3d
commit e473078703

View File

@ -947,7 +947,7 @@ class File_ASN1
if ($mapping['type'] == FILE_ASN1_TYPE_SET) {
sort($value);
}
$value = implode($value, '');
$value = implode('', $value);
break;
}