Silence html_entity_decode warnings. Props Denis-de-Bernardy. fixes #9616

git-svn-id: https://develop.svn.wordpress.org/trunk@11081 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren
2009-04-24 16:57:27 +00:00
parent f309ae3dff
commit ea6c1efcb9
5 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -800,7 +800,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, get_option('blog_charset'))) );
$description = wp_specialchars( strip_tags(@html_entity_decode($item->get_description(), ENT_QUOTES, get_option('blog_charset'))) );
$ilink = wp_nonce_url('plugin-install.php?tab=plugin-information&plugin=' . $slug, 'install-plugin_' . $slug) .
'&TB_iframe=true&width=600&height=800';