From: Cyperghost Date: Tue, 19 Dec 2023 12:34:53 +0000 (+0100) Subject: Export for categories `additionalData` X-Git-Tag: 6.0.4~3^2~1 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=d19e5805e3400efe7d25d6d8789b9f45997fbc74;p=GitHub%2FWoltLab%2Fcom.woltlab.wcf.exporter.git Export for categories `additionalData` --- 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);