diff --git a/foo-bar.php b/foo-bar.php index 766390ae..a0cf8b41 100644 --- a/foo-bar.php +++ b/foo-bar.php @@ -44,7 +44,7 @@ * Admin notice for incompatible versions of PHP. */ function _foo_bar_php_version_error() { - printf( '

%s

', esc_html( _foo_bar_php_version_text() ) ); + printf( '

%s

', _foo_bar_php_version_text() ); } /** @@ -53,5 +53,5 @@ function _foo_bar_php_version_error() { * @return string */ function _foo_bar_php_version_text() { - return esc_html__( 'Foo Bar plugin error: Your version of PHP is too old to run this plugin. You must be running PHP 5.6.20 or higher.', 'foo-bar' ); + return __( 'Foo Bar plugin error: Your version of PHP is too old to run this plugin. You must be running PHP 5.6.20 or higher.', 'foo-bar' ); }