Skip to content

Commit 6775b69

Browse files
Merge branch '7.4' into 8.0
* 7.4: [Translation][Lokalise] fix "Project too big for sync export" [DependencyInjection] Fix lazy proxy creation for interfaces aliased to final classes [HttpKernel] Fix StreamedResponse with chunks support in HttpKernelBrowser [HttpFoundation] Fix AcceptHeader overwrites items with different parameters [JsonStreamer] Rebuild cache on class update [Routing] Fix default value not taken if usigng name:entity.attribute [Mime] Remove unused variable in Email::prepareParts [DependencyInjection] Fix merging explicit tags and #[AsTaggeditem]
2 parents b7fed01 + bd230c1 commit 6775b69

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Email.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -492,7 +492,7 @@ private function prepareParts(): ?array
492492
}
493493

494494
if ($name !== $part->getContentId()) {
495-
$html = str_replace('cid:'.$name, 'cid:'.$part->getContentId(), $html, $count);
495+
$html = str_replace('cid:'.$name, 'cid:'.$part->getContentId(), $html);
496496
}
497497
$relatedParts[$name] = $part;
498498
$part->setName($part->getContentId())->asInline();

0 commit comments

Comments
 (0)