From d19e5805e3400efe7d25d6d8789b9f45997fbc74 Mon Sep 17 00:00:00 2001 From: Cyperghost Date: Tue, 19 Dec 2023 13:34:53 +0100 Subject: [PATCH] Export for categories `additionalData` --- files/lib/system/exporter/WBB4xExporter.class.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/files/lib/system/exporter/WBB4xExporter.class.php b/files/lib/system/exporter/WBB4xExporter.class.php index 3d6817d..0a9e80e 100644 --- a/files/lib/system/exporter/WBB4xExporter.class.php +++ b/files/lib/system/exporter/WBB4xExporter.class.php @@ -4277,6 +4277,9 @@ final class WBB4xExporter extends AbstractExporter if (\str_starts_with($row['description'], 'wcf.category')) { $i18nValues[] = $row['description']; } + if (\unserialize($row['additionalData']) !== false) { + $i18nValues[] = $row['additionalData']; + } } $i18nValues = $this->getI18nValues($i18nValues); -- 2.20.1