Skip to content

Commit

Permalink
Fixed #2996
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonkelly committed Jun 14, 2018
1 parent c030adb commit 8d82649
Show file tree
Hide file tree
Showing 2 changed files with 5 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 @@ -5,6 +5,7 @@
### Fixed
- Fixed a caching bug where the Fields service could still think a field existed after it had been deleted. ([#2985](https://github.com/craftcms/cms/issues/2985))
- Fixed a PHP error that could occur when saving entries with a URI format that contained certain Twig filters. ([#2995](https://github.com/craftcms/cms/issues/2995))
- Fixed a bug where the Find and Replace utility wasn’t updating element titles. ([#2996](https://github.com/craftcms/cms/issues/2996))

## 3.0.11 - 2018-06-12

Expand Down
5 changes: 4 additions & 1 deletion src/queue/jobs/FindAndReplace.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,10 @@ class FindAndReplace extends BaseJob
public function execute($queue)
{
// Find all the textual field columns
$this->_textColumns = [];
$this->_textColumns = [
['{{%content}}', 'title'],
];

foreach (Craft::$app->getFields()->getAllFields() as $field) {
if ($field instanceof Matrix) {
$this->_checkMatrixField($field);
Expand Down

0 comments on commit 8d82649

Please sign in to comment.