Skip to content

Commit 8fb6296

Browse files
committed
[RELEASE] Version 13.2.1
2 parents dd534b7 + 731602a commit 8fb6296

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# In2publish Core Change Log
22

3+
13.2.1
4+
- [META] Set the EM conf version number to 13.2.1
5+
- [DOCS] Update Changelog.md
6+
- [BUGFIX] Eliminate undefined array key warning with active feature hideRecordsDeletedDifferently
7+
38
13.2.0
49

510
- [META] Set the EM conf version number to 13.2.0

Classes/Component/Core/Record/Factory/RecordFactory.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,7 @@ protected function isRemovedAndDeletedRecord(Record $record): bool
168168
if (null === $deleteField) {
169169
return false;
170170
}
171-
return (empty($record->getLocalProps() && 1 === (int)$record->getForeignProps()[$deleteField]));
171+
return empty($record->getLocalProps())
172+
&& 1 === (int)($record->getForeignProps()[$deleteField] ?? 0);
172173
}
173174
}

ext_emconf.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
'title' => 'in2publish Core',
1010
'description' => 'Content publishing extension to connect stage and production server',
1111
'category' => 'plugin',
12-
'version' => '13.2.0',
12+
'version' => '13.2.1',
1313
'state' => 'stable',
1414
'author' => 'Alex Kellner, Oliver Eglseder, Thomas Scheibitz, Stefan Busemann',
1515
'author_email' => '[email protected]',

0 commit comments

Comments
 (0)