Skip to content

Commit 6c8c994

Browse files
committed
bug #59538 [VarDumper] fix dumped markup (xabbuh)
This PR was merged into the 6.4 branch. Discussion ---------- [VarDumper] fix dumped markup | Q | A | ------------- | --- | Branch? | 6.4 | Bug fix? | yes | New feature? | no | Deprecations? | no | Issues | | License | MIT see the failing tests for the `7.2` branch: https://github.com/symfony/symfony/actions/runs/12827707251/job/35770246377#step:8:2231 Commits ------- 66ba8de fix dumped markup
2 parents 0e610a8 + 66ba8de commit 6c8c994

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/VarDumper/Dumper/HtmlDumper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -879,7 +879,7 @@ protected function style(string $style, string $value, array $attr = []): string
879879
} elseif ('meta' === $style && isset($attr['title'])) {
880880
$dumpTitle = esc($this->utf8Encode($attr['title']));
881881
} elseif ('private' === $style) {
882-
$dumpTitle = sprintf('Private property defined in class:
`%s`"', esc($this->utf8Encode($attr['class'])));
882+
$dumpTitle = sprintf('Private property defined in class:
`%s`', esc($this->utf8Encode($attr['class'])));
883883
}
884884

885885
if (isset($attr['ellipsis'])) {

0 commit comments

Comments
 (0)