Changeset 8645 for trunk/wp-admin/install.php
- Timestamp:
- 08/14/2008 06:30:38 AM (18 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/install.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/install.php
r8309 r8645 1 1 <?php 2 /** 3 * WordPress Installer 4 * 5 * @package WordPress 6 * @subpackage Administration 7 */ 8 9 /** 10 * We are installing WordPress. 11 * 12 * @since unknown 13 * @var bool 14 */ 2 15 define('WP_INSTALLING', true); 3 16 17 /** Load WordPress Bootstrap */ 4 18 require_once('../wp-load.php'); 19 20 /** Load WordPress Administration Upgrade API */ 5 21 require_once('./includes/upgrade.php'); 6 22 … … 9 25 else 10 26 $step = 0; 11 function display_header(){ 27 28 /** 29 * Display install header. 30 * 31 * @since unknown 32 * @package WordPress 33 * @subpackage Installer 34 */ 35 function display_header() { 12 36 header( 'Content-Type: text/html; charset=utf-8' ); 13 37 ?>
Note: See TracChangeset
for help on using the changeset viewer.