Changeset 55495 for trunk/src/wp-includes/comment-template.php
- Timestamp:
- 03/09/2023 12:18:29 AM (3 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/comment-template.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/comment-template.php
r55398 r55495 240 240 * @since 6.2.0 241 241 * 242 * @param string[] $rel_parts An array of strings representing the rel 243 * tags which will be joined into the anchor's 244 * rel attribute. 245 * @param WP_Comment $comment The comment object 242 * @param string[] $rel_parts An array of strings representing the rel tags 243 * which will be joined into the anchor's rel attribute. 244 * @param WP_Comment $comment The comment object. 246 245 */ 247 246 $rel_parts = apply_filters( 'comment_author_link_rel', $rel_parts, $comment ); … … 249 248 $rel = implode( ' ', $rel_parts ); 250 249 $rel = esc_attr( $rel ); 251 // empty space before rel necessary for later sprintf.250 // Empty space before 'rel' is necessary for later sprintf(). 252 251 $rel = ! empty( $rel ) ? sprintf( ' rel="%s"', $rel ) : ''; 253 252
Note: See TracChangeset
for help on using the changeset viewer.