Skip to content

Commit

Permalink
add missing space before checked and remove outdated xhtml closing slash
Browse files Browse the repository at this point in the history
  • Loading branch information
kkmuffme committed Feb 28, 2025
1 parent 3f82512 commit 60645db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wp-admin/includes/class-wp-screen.php
Original file line number Diff line number Diff line change
Expand Up @@ -1183,7 +1183,7 @@ public function render_list_table_columns_preferences() {

$id = "$column-hide";
echo '<label>';
echo '<input class="hide-column-tog" name="' . $id . '" type="checkbox" id="' . $id . '" value="' . $column . '"' . checked( ! in_array( $column, $hidden, true ), true, false ) . ' />';
echo '<input class="hide-column-tog" name="' . $id . '" type="checkbox" id="' . $id . '" value="' . $column . '" ' . checked( ! in_array( $column, $hidden, true ), true, false ) . '>';
echo "$title</label>\n";
}
?>
Expand Down

0 comments on commit 60645db

Please sign in to comment.