Changeset 61456 for trunk/src/wp-admin/includes/class-wp-screen.php
- Timestamp:
- 01/09/2026 04:20:21 AM (3 months ago)
- File:
-
- 1 edited
-
trunk/src/wp-admin/includes/class-wp-screen.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-screen.php
r61300 r61456 809 809 ); 810 810 811 $old_help = isset( self::$_old_compat_help[ $this->id ] ) ? self::$_old_compat_help[ $this->id ] :'';811 $old_help = self::$_old_compat_help[ $this->id ] ?? ''; 812 812 813 813 /** … … 1258 1258 1259 1259 if ( 'edit_comments_per_page' === $option ) { 1260 $comment_status = isset( $_REQUEST['comment_status'] ) ? $_REQUEST['comment_status'] :'all';1260 $comment_status = $_REQUEST['comment_status'] ?? 'all'; 1261 1261 1262 1262 /** This filter is documented in wp-admin/includes/class-wp-comments-list-table.php */
Note: See TracChangeset
for help on using the changeset viewer.