Changeset 3951

Show
Ignore:
Timestamp:
07/04/06 18:28:08 (2 years ago)
Author:
matt
Message:

Another step toward removing old table vars, this is why we should be careful about naming things! Fixes #2524

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/wp-settings.php

    r3902 r3951  
    9292    $wpdb->usermeta = CUSTOM_USER_META_TABLE; 
    9393 
    94 // We're going to need to keep this around for a few months even though we're not using it internally 
    95  
    96 $tableposts = $wpdb->posts; 
    97 $tableusers = $wpdb->users; 
    98 $tablecategories = $wpdb->categories; 
    99 $tablepost2cat = $wpdb->post2cat; 
    100 $tablecomments = $wpdb->comments; 
    101 $tablelink2cat = $wpdb->link2cat; 
    102 $tablelinks = $wpdb->links; 
    103 $tablelinkcategories = $wpdb->linkcategories; 
    104 $tableoptions = $wpdb->options; 
    105 $tablepostmeta = $wpdb->postmeta; 
     94// To be removed in 2.2 
     95$tableposts = $tableusers = $tablecategories = $tablepost2cat = $tablecomments = $tablelink2cat = $tablelinks = $tablelinkcategories = $tableoptions = $tablepostmeta = ''; 
    10696 
    10797if ( file_exists(ABSPATH . 'wp-content/object-cache.php') )