Merge branch '1.0' into 2.0

This commit is contained in:
terrafrost 2019-08-03 07:28:03 -05:00
commit 68256d209b

View File

@ -850,7 +850,7 @@ class ASN1
if ($mapping['type'] == self::TYPE_SET) { if ($mapping['type'] == self::TYPE_SET) {
sort($value); sort($value);
} }
$value = implode($value, ''); $value = implode('', $value);
break; break;
} }