Changes from trunk/src/wp-admin/includes/class-wp-screen.php at r35461 to branches/4.4/src/wp-admin/includes/class-wp-screen.php at r36145
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.4/src/wp-admin/includes/class-wp-screen.php
r35461 r36145 531 531 } 532 532 533 sort( $priorities );533 ksort( $priorities ); 534 534 535 535 $sorted = array(); … … 999 999 * 1000 1000 * @since 4.4.0 1001 * 1001 * 1002 1002 * @param bool $show_button Whether to show Screen Options submit button. 1003 1003 * Default false. … … 1088 1088 $id = "$column-hide"; 1089 1089 echo '<label>'; 1090 echo '<input class="hide-column-tog" name="' . $id . '" type="checkbox" value="' . $column . '"' . checked( ! in_array( $column, $hidden ), true, false ) . ' />';1090 echo '<input class="hide-column-tog" name="' . $id . '" type="checkbox" id="' . $id . '" value="' . $column . '"' . checked( ! in_array( $column, $hidden ), true, false ) . ' />'; 1091 1091 echo "$title</label>\n"; 1092 1092 }
Note: See TracChangeset
for help on using the changeset viewer.