Changeset 61464
- Timestamp:
- 01/10/2026 05:27:32 AM (3 months ago)
- Location:
- trunk/src
- Files:
-
- 5 edited
-
wp-admin/includes/class-wp-comments-list-table.php (modified) (1 diff)
-
wp-admin/network/edit.php (modified) (1 diff)
-
wp-includes/class-wp-xmlrpc-server.php (modified) (1 diff)
-
wp-includes/functions.php (modified) (1 diff)
-
wp-includes/post-formats.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-comments-list-table.php
r61434 r61464 106 106 } 107 107 108 $search = ( isset( $_REQUEST['s'] ) ) ? $_REQUEST['s'] :'';108 $search = $_REQUEST['s'] ?? ''; 109 109 110 110 $post_type = ( isset( $_REQUEST['post_type'] ) ) ? sanitize_key( $_REQUEST['post_type'] ) : ''; 111 111 112 $user_id = ( isset( $_REQUEST['user_id'] ) ) ? $_REQUEST['user_id'] :'';113 114 $orderby = ( isset( $_REQUEST['orderby'] ) ) ? $_REQUEST['orderby'] :'';115 $order = ( isset( $_REQUEST['order'] ) ) ? $_REQUEST['order'] :'';112 $user_id = $_REQUEST['user_id'] ?? ''; 113 114 $orderby = $_REQUEST['orderby'] ?? ''; 115 $order = $_REQUEST['order'] ?? ''; 116 116 117 117 $comments_per_page = $this->get_per_page( $comment_status ); -
trunk/src/wp-admin/network/edit.php
r47855 r61464 11 11 require_once __DIR__ . '/admin.php'; 12 12 13 $action = ( isset( $_GET['action'] ) ) ? $_GET['action'] :'';13 $action = $_GET['action'] ?? ''; 14 14 15 15 if ( empty( $action ) ) { -
trunk/src/wp-includes/class-wp-xmlrpc-server.php
r61463 r61464 4450 4450 4451 4451 $parent_id = ( isset( $struct['parent_id'] ) ) ? absint( $struct['parent_id'] ) : ''; 4452 $mime_type = ( isset( $struct['mime_type'] ) ) ? $struct['mime_type'] :'';4452 $mime_type = $struct['mime_type'] ?? ''; 4453 4453 $offset = ( isset( $struct['offset'] ) ) ? absint( $struct['offset'] ) : 0; 4454 4454 $number = ( isset( $struct['number'] ) ) ? absint( $struct['number'] ) : -1; -
trunk/src/wp-includes/functions.php
r61445 r61464 3352 3352 } 3353 3353 3354 $mime = ( isset( $imagesize['mime'] ) ) ? $imagesize['mime'] :false;3354 $mime = $imagesize['mime'] ?? false; 3355 3355 } else { 3356 3356 $mime = false; -
trunk/src/wp-includes/post-formats.php
r58212 r61464 135 135 return $strings['standard']; 136 136 } else { 137 return ( isset( $strings[ $slug ] ) ) ? $strings[ $slug ] :'';137 return $strings[ $slug ] ?? ''; 138 138 } 139 139 }
Note: See TracChangeset
for help on using the changeset viewer.