Skip to content

Commit ccf7388

Browse files
committed
AC-7422:Incompatible issues fix for PHP8.2
1 parent 23022c4 commit ccf7388

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/internal/Magento/Framework/Escaper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ function ($errorNumber, $errorString) {
9797
}
9898
);
9999
$data = $this->prepareUnescapedCharacters($data);
100-
$string = @iconv("UTF-8","ISO-8859-1//IGNORE", $data);
100+
$string = @iconv("UTF-8", "ISO-8859-1//IGNORE", $data);
101101
try {
102102
$domDocument->loadHTML(
103103
'<html><body id="' . $wrapperElementId . '">' . $string . '</body></html>'

0 commit comments

Comments
 (0)