diff --git a/wp-admin/load-scripts.php b/wp-admin/load-scripts.php index 528fbcdc18..81c4fc6162 100644 --- a/wp-admin/load-scripts.php +++ b/wp-admin/load-scripts.php @@ -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); diff --git a/wp-admin/setup-config.php b/wp-admin/setup-config.php index 199078a22b..45ab7ca37d 100644 --- a/wp-admin/setup-config.php +++ b/wp-admin/setup-config.php @@ -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 ) ) diff --git a/wp-includes/js/tinymce/wp-tinymce.php b/wp-includes/js/tinymce/wp-tinymce.php index d839c11f85..922df9fc15 100644 --- a/wp-includes/js/tinymce/wp-tinymce.php +++ b/wp-includes/js/tinymce/wp-tinymce.php @@ -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); diff --git a/wp-load.php b/wp-load.php index 24cae89978..9021ceb747 100644 --- a/wp-load.php +++ b/wp-load.php @@ -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?" */