Allow for custom user table. If rewriting user functions need to include from wp-config

git-svn-id: https://develop.svn.wordpress.org/trunk@2205 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Matt Mullenweg 2005-02-02 10:51:42 +00:00
parent d6b5164e88
commit fa77eca473

View File

@ -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'))