Skip to content

Commit

Permalink
Merge branch 'develop' into bugfix/yii-blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
bencroker committed Oct 27, 2022
2 parents dc9cbd7 + 2170608 commit fc5ef2c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release Notes for Campaign

## 2.1.15 - 2022-10-27
### Fixed
- Fixed a missed uninitialized typed property that was causing verification links to fail ([#338](https://github.com/putyourlightson/craft-campaign/issues/338)).

## 2.1.14 - 2022-10-25
### Fixed
- Fixed a bug in which typed properties were being accessed before initialization, caused by a [breaking change](https://github.com/yiisoft/yii2/issues/19546#issuecomment-1291280606) in Yii 2.0.46.
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "putyourlightson/craft-campaign",
"description": "Send and manage email campaigns, contacts and mailing lists.",
"version": "2.1.14",
"version": "2.1.15",
"type": "craft-plugin",
"homepage": "https://putyourlightson.com/plugins/campaign",
"license": "proprietary",
Expand Down
2 changes: 1 addition & 1 deletion src/models/PendingContactModel.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class PendingContactModel extends Model
/**
* @var int|null Mailing list ID
*/
public ?int $mailingListId;
public ?int $mailingListId = null;

/**
* @var string|null Source
Expand Down

0 comments on commit fc5ef2c

Please sign in to comment.