From 8fff6080f9dcbec482329560133b4b37f14da774 Mon Sep 17 00:00:00 2001 From: saxmatt Date: Tue, 1 Jun 2004 02:00:44 +0000 Subject: [PATCH] Sometimes we need to keep things around. git-svn-id: http://svn.automattic.com/wordpress/trunk@1377 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-settings.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/wp-settings.php b/wp-settings.php index ed1129a514..0bb13e8367 100644 --- a/wp-settings.php +++ b/wp-settings.php @@ -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' );