Index: wp-settings.php
===================================================================
--- wp-settings.php	(revision 10284)
+++ wp-settings.php	(working copy)
@@ -199,7 +199,10 @@
 if (defined('WP_DEBUG') and WP_DEBUG == true) {
 	error_reporting(E_ALL);
 } else {
-	error_reporting(E_ALL ^ E_NOTICE ^ E_USER_NOTICE);
+	if( defined( 'E_DEPRECATED' ) )
+		error_reporting(E_ALL ^ E_NOTICE ^ E_USER_NOTICE ^ E_DEPRECATED);
+	else
+		error_reporting(E_ALL ^ E_NOTICE ^ E_USER_NOTICE);
 }
 
 // For an advanced caching plugin to use, static because you would only want one
