Merge pull request #19572 from faissaloux/fix/name-converted-to-html-entities

Avoid table names htmlentities conversion

Fixes #19571
This commit is contained in:
Maurício Meneghini Fauth 2025-03-08 19:08:46 -03:00 committed by GitHub
commit b6ddc64a35
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1555,8 +1555,8 @@ class Table implements Stringable
$this->messages[] = sprintf(
__('Table %1$s has been renamed to %2$s.'),
htmlspecialchars($oldName),
htmlspecialchars($newName)
$oldName,
$newName
);
return true;