From cc52cb9dab20ef91a18bbf56e706a48a66c667de Mon Sep 17 00:00:00 2001 From: adecaneda Date: Wed, 5 Aug 2015 11:35:23 +0200 Subject: [PATCH] Missing parameter in parse_old_format --- lib/openpgp.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/openpgp.php b/lib/openpgp.php index 62597f8..360fc79 100644 --- a/lib/openpgp.php +++ b/lib/openpgp.php @@ -501,7 +501,7 @@ class OpenPGP_Packet { $data_length = strlen($input) - $head_length; break; } - return array($tag, $head_length, $data_length); + return array($tag, $head_length, $data_length, false); } function __construct($data=NULL) {