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:
parent
44e890f765
commit
8fff6080f9
|
@ -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' );
|
||||
|
||||
|
|
Loading…
Reference in New Issue