From 46648147ac5ff677955a277d0b8847dcc81db7bd Mon Sep 17 00:00:00 2001 From: Olaf Braun Date: Tue, 19 Dec 2023 14:53:40 +0100 Subject: [PATCH] Correct save additionalData --- files/lib/system/exporter/WBB4xExporter.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/lib/system/exporter/WBB4xExporter.class.php b/files/lib/system/exporter/WBB4xExporter.class.php index 0a9e80e..e57c832 100644 --- a/files/lib/system/exporter/WBB4xExporter.class.php +++ b/files/lib/system/exporter/WBB4xExporter.class.php @@ -4278,7 +4278,7 @@ private function exportCategories($objectType, $importer, $offset, $limit) $i18nValues[] = $row['description']; } if (\unserialize($row['additionalData']) !== false) { - $i18nValues[] = $row['additionalData']; + $categories[$row['categoryID']]['additionalData'] = $row['additionalData']; } }