Changeset 601 for trunk/wp-settings.php
- Timestamp:
- 12/11/2003 12:22:36 AM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-settings.php
r561 r601 1 1 <?php 2 // This is the name of the include directory. No "/" allowed. 3 $b2inc = 'wp-includes'; 4 5 require ($abspath . 'wp-config-extra.php'); 6 require ($abspath . $b2inc . '/wp-db.php'); 7 require ($abspath . $b2inc . '/functions.php'); 8 require ($abspath . $b2inc . '/template-functions.php'); 9 require ($abspath . $b2inc . '/vars.php'); 10 require ($abspath . $b2inc . '/class-xmlrpc.php'); 11 require ($abspath . $b2inc . '/class-xmlrpcs.php'); 12 require ($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 2 18 // Table names 3 19 $tableposts = $table_prefix . 'posts'; … … 79 95 $default_geourl_lon = get_settings('default_geourl_lon'); 80 96 81 /* not currently used82 if (get_settings('search_engine_friendly_urls')) {83 $querystring_start = '/';84 $querystring_equal = '/';85 $querystring_separator = '/';86 } else {87 */88 97 $querystring_start = '?'; 89 98 $querystring_equal = '=';
Note: See TracChangeset
for help on using the changeset viewer.