Sometimes we need to keep things around.

git-svn-id: http://svn.automattic.com/wordpress/trunk@1377 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
saxmatt 2004-06-01 02:00:44 +00:00
parent 44e890f765
commit 8fff6080f9
1 changed files with 16 additions and 0 deletions

View File

@ -27,6 +27,22 @@ $wpdb->optiongroups = $table_prefix . 'optiongroups';
$wpdb->optiongroup_options = $table_prefix . 'optiongroup_options';
$wpdb->postmeta = $table_prefix . 'postmeta';
// We're going to need to keep this around for a few months even though we're not using it internally
$tableposts = $wpdb->posts;
$tableusers = $wpdb->users;
$tablecategories = $wpdb->categories;
$tablepost2cat = $wpdb->post2cat;
$tablecomments = $wpdb->comments;
$tablelinks = $wpdb->links;
$tablelinkcategories = $wpdb->linkcategories;
$tableoptions = $wpdb->options;
$tableoptiontypes = $wpdb->optiontypes;
$tableoptionvalues = $wpdb->optionvalues;
$tableoptiongroups = $wpdb->optiongroups;
$tableoptiongroup_options = $wpdb->optiongroup_options;
$tablepostmeta = $wpdb->postmeta;
if ( !(phpversion() >= '4.1') )
die( 'Your server is running PHP version ' . phpversion() . ' but WordPress requires at least 4.1' );