Pass blog charset to html_entity_decode(). Props adferguson. fixes #7563

git-svn-id: http://svn.automattic.com/wordpress/trunk@10688 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan
2009-03-03 18:37:25 +00:00
parent 8fb1093aad
commit a33afa3546
4 changed files with 8 additions and 8 deletions

View File

@@ -747,7 +747,7 @@ function wp_dashboard_plugins_output() {
$title = $item->get_title();
$title = wp_specialchars( $title );
$description = wp_specialchars( strip_tags(html_entity_decode($item->get_description(), ENT_QUOTES)) );
$description = wp_specialchars( strip_tags(html_entity_decode($item->get_description(), ENT_QUOTES, get_option('blog_charset'))) );
list($link, $frag) = explode( '#', $item->get_link() );