Skip to content

Commit d737c1e

Browse files
committed
[BUGFIX] Pass tableName argument to CR::shouldSkipFindByProperty
1 parent 5f80c9d commit d737c1e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Classes/Domain/Repository/CommonRepository.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ public function findByProperties(array $properties, $simulateRoot = false, strin
316316
$this->recordFactory->simulateRootRecord();
317317
}
318318
foreach ($properties as $propertyName => $propertyValue) {
319-
if ($this->shouldSkipFindByProperty($propertyName, $propertyValue)) {
319+
if ($this->shouldSkipFindByProperty($propertyName, $propertyValue, $tableName)) {
320320
return [];
321321
}
322322
}

ext_emconf.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
'title' => 'in2publish Core',
44
'description' => 'Content publishing extension to connect stage and production server',
55
'category' => 'plugin',
6-
'version' => '8.5.0',
6+
'version' => '8.6.0',
77
'state' => 'stable',
88
'uploadfolder' => 0,
99
'createDirs' => '',

0 commit comments

Comments
 (0)