diff --git a/wp-settings.php b/wp-settings.php index 09b814846d..4c2870bbd0 100644 --- a/wp-settings.php +++ b/wp-settings.php @@ -45,6 +45,9 @@ $wpdb->linkcategories = $table_prefix . 'linkcategories'; $wpdb->options = $table_prefix . 'options'; $wpdb->postmeta = $table_prefix . 'postmeta'; +if ( defined('CUSTOM_USER_TABLE') ) + $wpdb->users = CUSTOM_USER_TABLE; + // We're going to need to keep this around for a few months even though we're not using it internally $tableposts = $wpdb->posts; @@ -89,7 +92,6 @@ endif; require (ABSPATH . WPINC . '/vars.php'); - // Check for hacks file if the option is enabled if (get_settings('hack_file')) { if (file_exists(ABSPATH . '/my-hacks.php'))