Make WordPress Core

Changeset 561 for trunk/wp-settings.php


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

Multiple category upgrade system. Changed version number.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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.