Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 6c8c994

Browse filesBrowse 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
Copy full SHA for 6c8c994

File tree

Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed

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

Copy file name to clipboardExpand all lines: src/Symfony/Component/VarDumper/Dumper/HtmlDumper.php
+1-1Lines 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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.