Changeset 8645 for trunk/wp-admin/setup-config.php
- Timestamp:
- 08/14/2008 06:30:38 AM (17 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/setup-config.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/setup-config.php
r8309 r8645 1 1 <?php 2 /** 3 * Retrieves and creates the wp-config.php file. 4 * 5 * The permissions for the base directory must allow for writing files in order 6 * for the wp-config.php to be created using this page. 7 * 8 * @package WordPress 9 * @subpackage Administration 10 */ 11 12 /** 13 * We are installing. 14 * 15 * @since unknown 16 * @package WordPress 17 */ 2 18 define('WP_INSTALLING', true); 3 19 //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 … … 31 47 $step = 0; 32 48 33 function display_header(){ 49 /** 50 * Display setup wp-config.php file header. 51 * 52 * @since unknown 53 * @package WordPress 54 * @subpackage Installer_WP_Config 55 */ 56 function display_header() { 34 57 header( 'Content-Type: text/html; charset=utf-8' ); 35 58 ?>
Note: See TracChangeset
for help on using the changeset viewer.