Changeset 8238

Show
Ignore:
Timestamp:
07/02/08 17:03:55 (5 months ago)
Author:
ryan
Message:

Define WP_CONTENT_DIR in setup-config.php. Props sambauers. fixes #7221

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/wp-admin/setup-config.php

    r7971 r8238  
    11<?php 
    22define('WP_INSTALLING', true); 
    3 //These two defines are required to allow us to use require_wp_db() to load the database class while being wp-content/wp-db.php aware 
     3//These three defines are required to allow us to use require_wp_db() to load the database class while being wp-content/wp-db.php aware 
    44define('ABSPATH', dirname(dirname(__FILE__)).'/'); 
    55define('WPINC', 'wp-includes'); 
     6define('WP_CONTENT_DIR', ABSPATH . 'wp-content'); 
    67 
    78require_once('../wp-includes/compat.php');