Make WordPress Core

Changeset 601 for trunk/wp-settings.php


Ignore:
Timestamp:
12/11/2003 12:22:36 AM (21 years ago)
Author:
saxmatt
Message:

The great renaming.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-settings.php

    r561 r601  
    11<?php
     2// This is the name of the include directory. No "/" allowed.
     3$b2inc = 'wp-includes';
     4
     5require ($abspath . 'wp-config-extra.php');
     6require ($abspath . $b2inc . '/wp-db.php');
     7require ($abspath . $b2inc . '/functions.php');
     8require ($abspath . $b2inc . '/template-functions.php');
     9require ($abspath . $b2inc . '/vars.php');
     10require ($abspath . $b2inc . '/class-xmlrpc.php');
     11require ($abspath . $b2inc . '/class-xmlrpcs.php');
     12require ($abspath . '/wp-links/links.php');
     13
     14$HTTP_HOST = getenv('HTTP_HOST');  /* domain name */
     15$REMOTE_ADDR = getenv('REMOTE_ADDR'); /* visitor's IP */
     16$HTTP_USER_AGENT = getenv('HTTP_USER_AGENT'); /* visitor's browser */
     17
    218// Table names
    319$tableposts               = $table_prefix . 'posts';
     
    7995    $default_geourl_lon = get_settings('default_geourl_lon');
    8096
    81     /* not currently used
    82     if (get_settings('search_engine_friendly_urls')) {
    83         $querystring_start = '/';
    84         $querystring_equal = '/';
    85         $querystring_separator = '/';
    86     } else {
    87     */
    8897    $querystring_start = '?';
    8998    $querystring_equal = '=';
Note: See TracChangeset for help on using the changeset viewer.