Index: load.php
===================================================================
--- load.php	(revision 26811)
+++ load.php	(working copy)
@@ -328,6 +328,15 @@
 	if ( file_exists( WP_CONTENT_DIR . '/db.php' ) )
 		require_once( WP_CONTENT_DIR . '/db.php' );
 
+	if ( is_dir( WP_CONTENT_DIR . '/db/' ) ) {
+		$filenames = (array) scandir( WP_CONTENT_DIR . '/db/' );
+		foreach ( $filenames as $filename ) {
+			if ( '.' != $filename && '..' != $filename ) {
+				require_once( WP_CONTENT_DIR . '/db/' . $filename );
+			}
+		}
+	}
+
 	if ( isset( $wpdb ) )
 		return;
 
