diff -r be944660c56a -r 3d72ae0968f4 wp/wp-admin/options-discussion.php --- a/wp/wp-admin/options-discussion.php Wed Sep 21 18:19:35 2022 +0200 +++ b/wp/wp-admin/options-discussion.php Tue Sep 27 16:37:53 2022 +0200 @@ -12,6 +12,7 @@ wp_die( __( 'Sorry, you are not allowed to manage options for this site.' ) ); } +// Used in the HTML title tag. $title = __( 'Discussion Settings' ); $parent_file = 'options-general.php'; @@ -21,7 +22,7 @@ array( 'id' => 'overview', 'title' => __( 'Overview' ), - 'content' => '

' . __( 'This screen provides many options for controlling the management and display of comments and links to your posts/pages. So many, in fact, they won’t all fit here! :) Use the documentation links to get information on what each discussion setting does.' ) . '

' . + 'content' => '

' . __( 'This screen provides many options for controlling the management and display of comments and links to your posts/pages. So many, in fact, they will not all fit here! :) Use the documentation links to get information on what each discussion setting does.' ) . '

' . '

' . __( 'You must click the Save Changes button at the bottom of the screen for new settings to take effect.' ) . '

', ) ); @@ -57,7 +58,7 @@ />
-

+

@@ -108,7 +109,7 @@ $thread_comments_depth = '
"; endforeach; ?> @@ -298,7 +299,7 @@ add_filter( 'pre_option_show_avatars', '__return_true', 100 ); foreach ( $avatar_defaults as $default_key => $default_name ) { - $selected = ( $default == $default_key ) ? 'checked="checked" ' : ''; + $selected = ( $default === $default_key ) ? 'checked="checked" ' : ''; $avatar_list .= "\n\t';