Changeset 561
- Timestamp:
- 12/04/2003 06:33:33 PM (21 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-config.sample.php
r269 r561 10 10 // Database tables' names 11 11 // 12 // Change them if you want to have multiple blogs in a single database. 13 // If you already have custom names leave table_prefix empty and just 14 // edit the names. 12 // Change the prefix if you want to have multiple blogs in a single database. 15 13 16 14 $table_prefix = 'wp_'; // eg 'wp_' or 'b2' or 'mylogin_' 17 18 $tableposts = $table_prefix . 'posts';19 $tableusers = $table_prefix . 'users';20 $tablesettings = $table_prefix . 'settings'; // only used during upgrade21 $tablecategories = $table_prefix . 'categories';22 $tablecomments = $table_prefix . 'comments';23 $tablelinks = $table_prefix . 'links';24 $tablelinkcategories = $table_prefix . 'linkcategories';25 $tableoptions = $table_prefix . 'options';26 $tableoptiontypes = $table_prefix . 'optiontypes';27 $tableoptionvalues = $table_prefix . 'optionvalues';28 $tableoptiongroups = $table_prefix . 'optiongroups';29 $tableoptiongroup_options = $table_prefix . 'optiongroup_options';30 15 31 16 // This is the name of the include directory. No "/" allowed. -
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.