From 0fc7c81c66f39355e5488820ffa16121fd3f9eb2 Mon Sep 17 00:00:00 2001 From: terrafrost Date: Sat, 3 Apr 2021 13:48:40 -0500 Subject: [PATCH] fix bad merge --- phpseclib/File/ASN1.php | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/phpseclib/File/ASN1.php b/phpseclib/File/ASN1.php index 5242ef3a..0edd61e8 100644 --- a/phpseclib/File/ASN1.php +++ b/phpseclib/File/ASN1.php @@ -452,14 +452,10 @@ abstract class ASN1 } break; case self::TYPE_OBJECT_IDENTIFIER: -<<<<<<< HEAD - $current['content'] = self::decodeOID(substr($content, $content_pos)); -======= if ($constructed) { return false; } - $current['content'] = $this->_decodeOID(substr($content, $content_pos)); ->>>>>>> moosa-2.0 + $current['content'] = self::decodeOID(substr($content, $content_pos)); if ($current['content'] === false) { return false; }