Skip to content

Commit

Permalink
[BUGFIX] Pass tableName argument to CR::shouldSkipFindByProperty
Browse files Browse the repository at this point in the history
  • Loading branch information
vertexvaar committed Sep 6, 2021
1 parent 5f80c9d commit d737c1e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Classes/Domain/Repository/CommonRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ public function findByProperties(array $properties, $simulateRoot = false, strin
$this->recordFactory->simulateRootRecord();
}
foreach ($properties as $propertyName => $propertyValue) {
if ($this->shouldSkipFindByProperty($propertyName, $propertyValue)) {
if ($this->shouldSkipFindByProperty($propertyName, $propertyValue, $tableName)) {
return [];
}
}
Expand Down
2 changes: 1 addition & 1 deletion ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
'title' => 'in2publish Core',
'description' => 'Content publishing extension to connect stage and production server',
'category' => 'plugin',
'version' => '8.5.0',
'version' => '8.6.0',
'state' => 'stable',
'uploadfolder' => 0,
'createDirs' => '',
Expand Down

0 comments on commit d737c1e

Please sign in to comment.