Changeset 56867 for branches/6.1/src/wp-admin/includes/dashboard.php
- Timestamp:
- 10/12/2023 02:54:10 PM (22 months ago)
- Location:
- branches/6.1
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/6.1
- Property svn:mergeinfo changed
/trunk merged: 56833-56838
- Property svn:mergeinfo changed
-
branches/6.1/src/wp-admin/includes/dashboard.php
r54638 r56867 1092 1092 echo '<ul id="the-comment-list" data-wp-lists="list:comment">'; 1093 1093 foreach ( $comments as $comment ) { 1094 _wp_dashboard_recent_comments_row( $comment ); 1094 1095 $comment_post = get_post( $comment->comment_post_ID ); 1096 if ( 1097 current_user_can( 'edit_post', $comment->comment_post_ID ) || 1098 ( 1099 empty( $comment_post->post_password ) && 1100 current_user_can( 'read_post', $comment->comment_post_ID ) 1101 ) 1102 ) { 1103 _wp_dashboard_recent_comments_row( $comment ); 1104 } 1095 1105 } 1096 1106 echo '</ul>';
Note: See TracChangeset
for help on using the changeset viewer.