Skip to content

Commit

Permalink
Use some PHP 5.4 constants unconditionally
Browse files Browse the repository at this point in the history
  • Loading branch information
fancyweb committed Mar 5, 2020
1 parent 3b3e97f commit 169ee10
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions FormRenderer.php
Original file line number Diff line number Diff line change
Expand Up @@ -291,9 +291,9 @@ public function humanize($text)
public function encodeCurrency(Environment $environment, $text, $widget = '')
{
if ('UTF-8' === $charset = $environment->getCharset()) {
$text = htmlspecialchars($text, ENT_QUOTES | (\defined('ENT_SUBSTITUTE') ? ENT_SUBSTITUTE : 0), 'UTF-8');
$text = htmlspecialchars($text, ENT_QUOTES | ENT_SUBSTITUTE, 'UTF-8');
} else {
$text = htmlentities($text, ENT_QUOTES | (\defined('ENT_SUBSTITUTE') ? ENT_SUBSTITUTE : 0), 'UTF-8');
$text = htmlentities($text, ENT_QUOTES | ENT_SUBSTITUTE, 'UTF-8');
$text = iconv('UTF-8', $charset, $text);
$widget = iconv('UTF-8', $charset, $widget);
}
Expand Down

0 comments on commit 169ee10

Please sign in to comment.