Make WordPress Core

Changeset 561


Ignore:
Timestamp:
12/04/2003 06:33:33 PM (21 years ago)
Author:
saxmatt
Message:

Multiple category upgrade system. Changed version number.

Location:
trunk
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-config.sample.php

    r269 r561  
    1010// Database tables' names
    1111//
    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.
    1513
    1614$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 upgrade
    21 $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';
    3015
    3116// This is the name of the include directory. No "/" allowed.
  • trunk/wp-settings.php

    r559 r561  
    11<?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
    218//setup the old globals from b2config.php
    319//
Note: See TracChangeset for help on using the changeset viewer.