Make WordPress Core

Changeset 9126


Ignore:
Timestamp:
10/12/2008 05:40:20 PM (16 years ago)
Author:
westi
Message:

phpdoc fixes for setup-config.php. See #7550 props jacobsantos.

File:
1 edited

Legend:

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

    r9119 r9126  
    1616 */
    1717define('WP_INSTALLING', true);
    18 //These three defines are required to allow us to use require_wp_db() to load the database class while being wp-content/db.php aware
     18
     19/**#@+
     20 * These three defines are required to allow us to use require_wp_db() to load
     21 * the database class while being wp-content/db.php aware.
     22 * @ignore
     23 */
    1924define('ABSPATH', dirname(dirname(__FILE__)).'/');
    2025define('WPINC', 'wp-includes');
    2126define('WP_CONTENT_DIR', ABSPATH . 'wp-content');
     27/**#@-*/
    2228
    2329require_once('../wp-includes/compat.php');
     
    136142
    137143    // Test the db connection.
     144    /**#@+
     145     * @ignore
     146     */
    138147    define('DB_NAME', $dbname);
    139148    define('DB_USER', $uname);
    140149    define('DB_PASSWORD', $passwrd);
    141150    define('DB_HOST', $dbhost);
     151    /**#@-*/
    142152
    143153    // We'll fail here if the values are no good.
Note: See TracChangeset for help on using the changeset viewer.