Changeset 4656 for trunk/wp-includes/post-template.php
- Timestamp:
- 12/21/2006 10:10:04 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/post-template.php
r4612 r4656 335 335 return __('Missing Attachment'); 336 336 337 $post_title = wp_specialchars( $_post->post_title, 1);337 $post_title = attribute_escape( $_post->post_title); 338 338 339 339 if (! empty($_post->guid) ) { … … 421 421 } 422 422 423 $post_title = wp_specialchars( $post->post_title, 1);423 $post_title = attribute_escape( $post->post_title); 424 424 425 425 $icon = "<img src='$src' title='$post_title' alt='$post_title' $constraint/>"; … … 436 436 $post = & get_post($id); 437 437 438 $innerHTML = wp_specialchars( $post->post_title, 1);438 $innerHTML = attribute_escape( $post->post_title); 439 439 440 440 return apply_filters('attachment_innerHTML', $innerHTML, $post->ID);
Note: See TracChangeset
for help on using the changeset viewer.