diff --git wp-admin/css/dashboard.css wp-admin/css/dashboard.css
index dc81048..db90362 100755
--- wp-admin/css/dashboard.css
+++ wp-admin/css/dashboard.css
@@ -265,6 +265,12 @@
 	top: -1px;
 }
 
+/* Since 5.3. Under More Actions on Dashboard welcome panel */
+.welcome-panel .welcome-settings:before {
+    content: "\f108";
+    top: -1px;
+}
+
 .welcome-panel .welcome-learn-more:before {
 	content: "\f118";
 	top: -1px;
diff --git wp-admin/includes/dashboard.php wp-admin/includes/dashboard.php
index ad02909..320196d 100755
--- wp-admin/includes/dashboard.php
+++ wp-admin/includes/dashboard.php
@@ -1732,6 +1732,8 @@ function wp_welcome_panel() {
 		<?php endif; ?>
 		<?php if ( current_user_can( 'manage_options' ) ) : ?>
 			<li><?php printf( '<a href="%s" class="welcome-icon welcome-comments">' . __( 'Turn comments on or off' ) . '</a>', admin_url( 'options-discussion.php' ) ); ?></li>
+			<!-- Since 5.3 -->
+			<li><?php printf( '<a href="%s" class="welcome-icon welcome-settings">' . __( 'Review your settings' ) . '</a>', admin_url( 'options-general.php' ) ); ?></li>
 		<?php endif; ?>
 			<li><?php printf( '<a href="%s" class="welcome-icon welcome-learn-more">' . __( 'Learn more about getting started' ) . '</a>', __( 'https://codex.wordpress.org/First_Steps_With_WordPress' ) ); ?></li>
 		</ul>
diff --git wp-admin/options-general.php wp-admin/options-general.php
index 62dd495..34e099b 100755
--- wp-admin/options-general.php
+++ wp-admin/options-general.php
@@ -141,6 +141,8 @@ if ( $new_admin_email && $new_admin_email != get_option( 'admin_email' ) ) :
 <td> <fieldset><legend class="screen-reader-text"><span><?php _e( 'Membership' ); ?></span></legend><label for="users_can_register">
 <input name="users_can_register" type="checkbox" id="users_can_register" value="1" <?php checked( '1', get_option( 'users_can_register' ) ); ?> />
 	<?php _e( 'Anyone can register' ); ?></label>
+		<!-- Since 5.3 -->
+		<p class="description" id="new-admin-public-register-description"><?php _e( 'A service to your recurring commenters, or in case you run a membership or e-commerce site. If checked, also <strong>be aware of "New User Default Role"</strong> below.' ); ?></p>
 </fieldset></td>
 </tr>
 
