Changeset 29599
- Timestamp:
- 08/25/2014 05:39:46 PM (10 years ago)
- Location:
- trunk/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/install.php
r29516 r29599 41 41 /** Load wpdb */ 42 42 require_once( ABSPATH . WPINC . '/wp-db.php' ); 43 44 nocache_headers(); 43 45 44 46 $step = isset( $_GET['step'] ) ? (int) $_GET['step'] : 0; -
trunk/src/wp-admin/setup-config.php
r29206 r29599 34 34 35 35 require( ABSPATH . 'wp-admin/includes/upgrade.php' ); 36 37 nocache_headers(); 36 38 37 39 // Support wp-config-sample.php one level up, for the develop repo. -
trunk/src/wp-includes/load.php
r28656 r29599 467 467 function wp_not_installed() { 468 468 if ( is_multisite() ) { 469 if ( ! is_blog_installed() && ! defined( 'WP_INSTALLING' ) ) 469 if ( ! is_blog_installed() && ! defined( 'WP_INSTALLING' ) ) { 470 nocache_headers(); 471 470 472 wp_die( __( 'The site you have requested is not installed properly. Please contact the system administrator.' ) ); 473 } 471 474 } elseif ( ! is_blog_installed() && false === strpos( $_SERVER['PHP_SELF'], 'install.php' ) && !defined( 'WP_INSTALLING' ) ) { 475 nocache_headers(); 476 472 477 require( ABSPATH . WPINC . '/kses.php' ); 473 478 require( ABSPATH . WPINC . '/pluggable.php' );
Note: See TracChangeset
for help on using the changeset viewer.