Make WordPress Core

Changeset 1377 for trunk/wp-settings.php


Ignore:
Timestamp:
06/01/2004 02:00:44 AM (22 years ago)
Author:
saxmatt
Message:

Sometimes we need to keep things around.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-settings.php

    r1367 r1377  
    2727$wpdb->optiongroup_options = $table_prefix . 'optiongroup_options';
    2828$wpdb->postmeta            = $table_prefix . 'postmeta';
     29
     30// We're going to need to keep this around for a few months even though we're not using it internally
     31
     32$tableposts = $wpdb->posts;
     33$tableusers = $wpdb->users;
     34$tablecategories = $wpdb->categories;
     35$tablepost2cat = $wpdb->post2cat;
     36$tablecomments = $wpdb->comments;
     37$tablelinks = $wpdb->links;
     38$tablelinkcategories = $wpdb->linkcategories;
     39$tableoptions = $wpdb->options;
     40$tableoptiontypes = $wpdb->optiontypes;
     41$tableoptionvalues = $wpdb->optionvalues;
     42$tableoptiongroups = $wpdb->optiongroups;
     43$tableoptiongroup_options = $wpdb->optiongroup_options;
     44$tablepostmeta = $wpdb->postmeta;
    2945
    3046if ( !(phpversion() >= '4.1') )
Note: See TracChangeset for help on using the changeset viewer.