mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-31 22:10:45 +02:00
[ticket/16981] Fix HTML-encoded emojis in email subject line
PHPBB3-16981
This commit is contained in:
@@ -227,7 +227,7 @@ class data_access
|
||||
{
|
||||
foreach ($columns as $column)
|
||||
{
|
||||
$row[$column] = htmlspecialchars_decode($row[$column], ENT_COMPAT);
|
||||
$row[$column] = html_entity_decode($row[$column], ENT_COMPAT);
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user