General: Make some inline comments more descriptive.

Props jorbin.
Fixes #51683.


git-svn-id: https://develop.svn.wordpress.org/trunk@49474 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Helen Hou-Sandi
2020-11-02 18:02:11 +00:00
parent bea15ce1a8
commit 4985f741d3
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -1748,7 +1748,7 @@ function is_blog_installed() {
*/
$wp_tables = $wpdb->tables();
foreach ( $wp_tables as $table ) {
// The existence of custom user tables shouldn't suggest an insane state or prevent a clean installation.
// The existence of custom user tables shouldn't suggest an unwise state or prevent a clean installation.
if ( defined( 'CUSTOM_USER_TABLE' ) && CUSTOM_USER_TABLE == $table ) {
continue;
}
@@ -1764,7 +1764,7 @@ function is_blog_installed() {
continue;
}
// One or more tables exist. We are insane.
// One or more tables exist. This is not good.
wp_load_translations_early();