Changeset 37789
- Timestamp:
- 06/21/2016 02:24:16 PM (8 years ago)
- Location:
- branches/4.2/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.2/src/wp-admin/includes/class-wp-media-list-table.php
r31942 r37789 342 342 <?php }; 343 343 _media_states( $post ); ?></strong> 344 <p class="filename"><?php echo wp_basename( $post->guid); ?></p>344 <p class="filename"><?php echo esc_html( wp_basename( $post->guid ) ); ?></p> 345 345 <?php 346 346 echo $this->row_actions( $this->_get_row_actions( $post, $att_title ) ); -
branches/4.2/src/wp-includes/post-template.php
r32081 r37789 1563 1563 * @param string|bool $text If string, will be link text. Default false. 1564 1564 */ 1565 return apply_filters( 'wp_get_attachment_link', "<a href=' $url'>$link_text</a>", $id, $size, $permalink, $icon, $text );1565 return apply_filters( 'wp_get_attachment_link', "<a href='" . esc_url( $url ) . "'>$link_text</a>", $id, $size, $permalink, $icon, $text ); 1566 1566 } 1567 1567
Note: See TracChangeset
for help on using the changeset viewer.