Changeset 34452
- Timestamp:
- 09/23/2015 04:25:18 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/link-template.php
r34445 r34452 683 683 } 684 684 685 $link = '<a href="' . esc_url( $url ) . '">' . esc_html( $link_text ). '</a>';685 $link = '<a href="' . esc_url( $url ) . '">' . $link_text . '</a>'; 686 686 /** 687 687 * Filter the post comment feed link anchor tag. … … 1293 1293 } 1294 1294 1295 $link = '<a class="' . esc_attr( $class ) . '" href="' . esc_url( $url ) . '">' . esc_html( $text ). '</a>';1295 $link = '<a class="' . esc_attr( $class ) . '" href="' . esc_url( $url ) . '">' . $text . '</a>'; 1296 1296 1297 1297 /** … … 1395 1395 } 1396 1396 1397 $link = '<a class="comment-edit-link" href="' . esc_url( get_edit_comment_link( $comment ) ) . '">' . esc_html( $text ). '</a>';1397 $link = '<a class="comment-edit-link" href="' . esc_url( get_edit_comment_link( $comment ) ) . '">' . $text . '</a>'; 1398 1398 1399 1399 /** … … 1455 1455 $link = __('Edit This'); 1456 1456 1457 $link = '<a href="' . esc_url( get_edit_bookmark_link( $bookmark ) ) . '">' . esc_html( $link ). '</a>';1457 $link = '<a href="' . esc_url( get_edit_bookmark_link( $bookmark ) ) . '">' . $link . '</a>'; 1458 1458 1459 1459 /**
Note: See TracChangeset
for help on using the changeset viewer.