1 Commits
1.1.4 ... 1.1.5

Author SHA1 Message Date
6f279a2cc2 Fix: Array-Serialisierung kompatibel fuer Contao 4.13/5.x 2026-03-15 19:59:03 +01:00

View File

@@ -386,7 +386,7 @@ final class DummyCopier
$this->connection->update( $this->connection->update(
'tl_news', 'tl_news',
[ [
'related' => StringUtil::serialize($mappedRelated), 'related' => serialize($mappedRelated),
'tstamp' => time(), 'tstamp' => time(),
], ],
['id' => $newNewsId] ['id' => $newNewsId]
@@ -658,7 +658,7 @@ final class DummyCopier
$mapped[] = (string) ($idMap[$id] ?? $id); $mapped[] = (string) ($idMap[$id] ?? $id);
} }
return StringUtil::serialize($mapped); return serialize($mapped);
} }
private function estimateContentCount(DummyCopyOptions $options): int private function estimateContentCount(DummyCopyOptions $options): int