Skip to content

Commit

Permalink
Missing parameter in parse_old_format
Browse files Browse the repository at this point in the history
  • Loading branch information
adecaneda committed Aug 5, 2015
1 parent 4281c8f commit cc52cb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/openpgp.php
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@ static function parse_old_format($input) {
$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) {
Expand Down

0 comments on commit cc52cb9

Please sign in to comment.