Skip to content

Commit bd230c1

Browse files
Merge branch '7.3' into 7.4
* 7.3: [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 adb6275 + 989f19e commit bd230c1

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)