Use unicode for quotes

There is no need to use html entities.

Issue #12987

Signed-off-by: Michal Čihař <michal@cihar.com>
This commit is contained in:
Michal Čihař 2017-03-01 16:20:14 +01:00
parent dfa7995451
commit 6e78d489ee

View File

@ -272,7 +272,7 @@ class Menu
$retval .= '<span class="table_comment"';
$retval .= ' id="span_table_comment">';
$retval .= sprintf(
__('&ldquo;%s&rdquo;'), htmlspecialchars($show_comment)
__('“%s”'), htmlspecialchars($show_comment)
);
$retval .= '</span>';
} // end if
@ -291,7 +291,7 @@ class Menu
$retval .= '<span class="table_comment"'
. ' id="span_table_comment">'
. sprintf(
__('&ldquo;%s&rdquo;'),
__('“%s”'),
htmlspecialchars($comment)
)
. '</span>';