Changeset 17410
- Timestamp:
- 02/07/2011 07:11:17 PM (15 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/includes/template.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/template.php
r17395 r17410 271 271 return; 272 272 273 $title = htmlspecialchars( trim( $post->post_title ), ENT_QUOTES);273 $title = esc_textarea( trim( $post->post_title ) ); 274 274 275 275 echo ' … … 278 278 <div class="post_name">' . apply_filters('editable_slug', $post->post_name) . '</div> 279 279 <div class="post_author">' . $post->post_author . '</div> 280 <div class="comment_status">' . $post->comment_status. '</div>281 <div class="ping_status">' . $post->ping_status. '</div>282 <div class="_status">' . $post->post_status. '</div>280 <div class="comment_status">' . esc_html( $post->comment_status ) . '</div> 281 <div class="ping_status">' . esc_html( $post->ping_status ) . '</div> 282 <div class="_status">' . esc_html( $post->post_status ) . '</div> 283 283 <div class="jj">' . mysql2date( 'd', $post->post_date, false ) . '</div> 284 284 <div class="mm">' . mysql2date( 'm', $post->post_date, false ) . '</div>
Note: See TracChangeset
for help on using the changeset viewer.