### Eclipse Workspace Patch 1.0
#P wordpress-trunk
Index: wp-config-sample.php
===================================================================
--- wp-config-sample.php	(revision 12533)
+++ wp-config-sample.php	(working copy)
@@ -66,6 +66,14 @@
  */
 define ('WPLANG', '');
 
+/**
+ * Whether or not to make the functions that have been deprecated available.
+ * 
+ * Defaults to false for new installs but to true for old installs so that existing
+ * sites are not broken on upgrade
+ */
+define( 'WP_ENABLE_DEPRECATED_FUNCTIONS', false );
+
 /* That's all, stop editing! Happy blogging. */
 
 /** Absolute path to the WordPress directory. */
Index: wp-settings.php
===================================================================
--- wp-settings.php	(revision 12533)
+++ wp-settings.php	(working copy)
@@ -378,7 +378,6 @@
 require (ABSPATH . WPINC . '/kses.php');
 require (ABSPATH . WPINC . '/cron.php');
 require (ABSPATH . WPINC . '/version.php');
-require (ABSPATH . WPINC . '/deprecated.php');
 require (ABSPATH . WPINC . '/script-loader.php');
 require (ABSPATH . WPINC . '/taxonomy.php');
 require (ABSPATH . WPINC . '/update.php');
@@ -388,6 +387,19 @@
 require (ABSPATH . WPINC . '/http.php');
 require (ABSPATH . WPINC . '/widgets.php');
 
+/**
+ * Whether or not to make the functions we have deprecated available.
+ * 
+ * @since 3.0.0
+ */
+if ( !defined( 'WP_ENABLE_DEPRECATED_FUNCTIONS' ) )
+	define( 'WP_ENABLE_DEPRECATED_FUNCTIONS', true );
+
+if ( WP_ENABLE_DEPRECATED_FUNCTIONS )
+	require (ABSPATH . WPINC . '/deprecated.php');
+
+
+
 if ( !defined('WP_CONTENT_URL') )
 	define( 'WP_CONTENT_URL', get_option('siteurl') . '/wp-content'); // full url - WP_CONTENT_DIR is defined further up
 
