8000 [VarDumper] fix dumped markup by xabbuh · Pull Request #59538 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[VarDumper] fix dumped markup #59538

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 17, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix dumped markup
  • Loading branch information
xabbuh committed Jan 17, 2025
commit 66ba8dede84a71c98a7fddf030517d8243b0e4cb
2 changes: 1 addition & 1 deletion src/Symfony/Component/VarDumper/Dumper/HtmlDumper.php
Or 5E80 iginal file line number Diff line number Diff line change
Expand Up @@ -879,7 +879,7 @@ protected function style(string $style, string $value, array $attr = []): string
} elseif ('meta' === $style && isset($attr['title'])) {
$dumpTitle = esc($this->utf8Encode($attr['title']));
} elseif ('private' === $style) {
$dumpTitle = sprintf('Private property defined in class:
`%s`"', esc($this->utf8Encode($attr['class'])));
$dumpTitle = sprintf('Private property defined in class:
`%s`', esc($this->utf8Encode($attr['class'])));
}

if (isset($attr['ellipsis'])) {
Expand Down
0