[wp-cvs] wordpress wp-settings.php,1.43,1.44
Matthew Mullenweg
saxmatt at users.sourceforge.net
Mon May 31 21:00:47 CDT 2004
Update of /cvsroot/cafelog/wordpress
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26892
Modified Files:
wp-settings.php
Log Message:
Sometimes we need to keep things around.
Index: wp-settings.php
===================================================================
RCS file: /cvsroot/cafelog/wordpress/wp-settings.php,v
retrieving revision 1.43
retrieving revision 1.44
diff -C2 -d -r1.43 -r1.44
*** wp-settings.php 27 May 2004 17:44:53 -0000 1.43
--- wp-settings.php 1 Jun 2004 02:00:44 -0000 1.44
***************
*** 28,31 ****
--- 28,47 ----
$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' );
More information about the cvs
mailing list