Changeset 561 for trunk/wp-settings.php
- Timestamp:
- 12/04/2003 06:33:33 PM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-settings.php
r559 r561 1 1 <?php 2 // Table names 3 $tableposts = $table_prefix . 'posts'; 4 $tableusers = $table_prefix . 'users'; 5 $tablesettings = $table_prefix . 'settings'; // only used during upgrade 6 $tablecategories = $table_prefix . 'categories'; 7 $tablepost2cat = $table_prefix . 'post2cat'; 8 $tablecomments = $table_prefix . 'comments'; 9 $tablelinks = $table_prefix . 'links'; 10 $tablelinkcategories = $table_prefix . 'linkcategories'; 11 $tableoptions = $table_prefix . 'options'; 12 $tableoptiontypes = $table_prefix . 'optiontypes'; 13 $tableoptionvalues = $table_prefix . 'optionvalues'; 14 $tableoptiongroups = $table_prefix . 'optiongroups'; 15 $tableoptiongroup_options = $table_prefix . 'optiongroup_options'; 16 17 2 18 //setup the old globals from b2config.php 3 19 //
Note: See TracChangeset
for help on using the changeset viewer.