Inline docs syntax fixes following [28978].
See #28740. Built from https://develop.svn.wordpress.org/trunk@29015 git-svn-id: http://core.svn.wordpress.org/trunk@28803 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
c321e40016
commit
9ef7c41a15
|
@ -3,7 +3,7 @@
|
|||
/**
|
||||
* Disable error reporting
|
||||
*
|
||||
* Set this to error_reporting( -1 ) for debugging
|
||||
* Set this to error_reporting( -1 ) for debugging.
|
||||
*/
|
||||
error_reporting(0);
|
||||
|
||||
|
|
|
@ -213,8 +213,10 @@ switch($step) {
|
|||
unset( $wpdb );
|
||||
require_wp_db();
|
||||
|
||||
// The wpdb constructor bails when WP_SETUP_CONFIG is set, so we must
|
||||
// fire this manually. We'll fail here if the values are no good.
|
||||
/*
|
||||
* The wpdb constructor bails when WP_SETUP_CONFIG is set, so we must
|
||||
* fire this manually. We'll fail here if the values are no good.
|
||||
*/
|
||||
$wpdb->db_connect();
|
||||
|
||||
if ( ! empty( $wpdb->error ) )
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
/**
|
||||
* Disable error reporting
|
||||
*
|
||||
* Set this to error_reporting( -1 ) for debugging
|
||||
* Set this to error_reporting( -1 ) for debugging.
|
||||
*/
|
||||
error_reporting(0);
|
||||
|
||||
|
|
|
@ -47,7 +47,8 @@ if ( file_exists( ABSPATH . 'wp-config.php') ) {
|
|||
|
||||
$path = wp_guess_url() . '/wp-admin/setup-config.php';
|
||||
|
||||
/* We're going to redirect to setup-config.php. While this shouldn't result
|
||||
/*
|
||||
* We're going to redirect to setup-config.php. While this shouldn't result
|
||||
* in an infinite loop, that's a silly thing to assume, don't you think? If
|
||||
* we're traveling in circles, our last-ditch effort is "Need more help?"
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue