Skip to content

Commit

Permalink
MAGETWO-83024: Fix #10682: Meta description and keywords transform to…
Browse files Browse the repository at this point in the history
… html entities #11829
  • Loading branch information
ishakhsuvarov authored Nov 1, 2017
2 parents 884d717 + b7527b4 commit e59a519
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/internal/Magento/Framework/View/Page/Config.php
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ public function getTitle()
public function setMetadata($name, $content)
{
$this->build();
$this->metadata[$name] = htmlentities($content);
$this->metadata[$name] = htmlspecialchars($content);
}

/**
Expand Down

0 comments on commit e59a519

Please sign in to comment.