Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #1132 #1134

Merged
merged 2 commits into from
May 12, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# Release Notes for Feed Me 4.x
# Release Notes for Feed Me

## Unreleased

### Fixed
- Fixed a PHP error that would occur when processing feed settings. ([#1132](https://github.com/craftcms/feed-me/issues/1132))

## 5.0.1 - 2022-05-05

Expand Down
4 changes: 2 additions & 2 deletions src/models/Settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ class Settings extends Model
public string $csvColumnDelimiter = ',';

/**
* @var array
* @var bool
*/
public array $parseTwig = [];
public bool $parseTwig = false;

/**
* @var array
Expand Down