Skip to content

Commit

Permalink
Fixed #3877
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonkelly committed Feb 21, 2019
1 parent 2d3572c commit 459f438
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG-v3.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

### Fixed
- Fixed a bug where Craft could update the `dateModified` value in the project config even when nothing had changed. ([#3792](https://github.com/craftcms/cms/issues/3792))
- Fixed a SQL error that occurred when running the “Localizing relations” task if using PostgreSQL. ([#3877](https://github.com/craftcms/cms/issues/3877))

### Security
- Fixed a bug where sensitive environment variable values weren’t getting redacted correctly.
Expand Down
2 changes: 1 addition & 1 deletion src/queue/jobs/LocalizeRelations.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public function execute($queue)
->insert(
Table::RELATIONS,
[
'fieldid' => $this->fieldId,
'fieldId' => $this->fieldId,
'sourceId' => $relation['sourceId'],
'sourceSiteId' => $siteId,
'targetId' => $relation['targetId'],
Expand Down

0 comments on commit 459f438

Please sign in to comment.