How to Disable browser upgrade notification / warning

Adding this snippet to the functions.php of your wordpress theme will disable the upgrade notification / warning displayed within the wordpress admin in version 3.2.
( click code to copy )wordpress snippet : PHP
<>
function disable_browser_upgrade_warning() { remove_meta_box( 'dashboard_browser_nag', 'dashboard', 'normal' ); } add_action( 'wp_dashboard_setup', 'disable_browser_upgrade_warning' );