Changeset 21856 for trunk/wp-admin/setup-config.php
- Timestamp:
- 09/15/2012 07:49:21 PM (13 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/setup-config.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/setup-config.php
r21716 r21856 86 86 * @subpackage Installer_WP_Config 87 87 */ 88 function display_header() {88 function setup_config_display_header() { 89 89 global $wp_version; 90 90 … … 102 102 <h1 id="logo"><img alt="WordPress" src="images/wordpress-logo.png?ver=20120216" /></h1> 103 103 <?php 104 } //end functiondisplay_header();104 } // end function setup_config_display_header(); 105 105 106 106 switch($step) { 107 107 case 0: 108 display_header();108 setup_config_display_header(); 109 109 ?> 110 110 … … 125 125 126 126 case 1: 127 display_header();127 setup_config_display_header(); 128 128 ?> 129 129 <form method="post" action="setup-config.php?step=2"> … … 255 255 256 256 if ( ! is_writable(ABSPATH) ) : 257 display_header();257 setup_config_display_header(); 258 258 ?> 259 259 <p><?php _e( "Sorry, but I can't write the <code>wp-config.php</code> file." ); ?></p> … … 274 274 fclose($handle); 275 275 chmod(ABSPATH . 'wp-config.php', 0666); 276 display_header();276 setup_config_display_header(); 277 277 ?> 278 278 <p><?php _e( "All right sparky! You've made it through this part of the installation. WordPress can now communicate with your database. If you are ready, time now to…" ); ?></p>
Note: See TracChangeset
for help on using the changeset viewer.