Skip to content

Commit

Permalink
fix: seo values double entity encoded
Browse files Browse the repository at this point in the history
  • Loading branch information
BernhardBaumrock committed Apr 13, 2023
1 parent cd66bff commit e4cbff8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Seo.php
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ function ($matches) use (&$out, $tag, &$hasValue) {
// sanitize value
$value = (string)$value;
if ($filter != 'noescape') {
$value = $this->wire->sanitizer->entities($value);
$value = $this->wire->sanitizer->entities1($value);
}

$out = str_replace($search, $value, $out);
Expand Down

0 comments on commit e4cbff8

Please sign in to comment.