Changeset 13079
- Timestamp:
- 02/13/2010 03:17:57 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/template.php
r13045 r13079 1220 1220 return; 1221 1221 1222 $title = esc_attr( $post->post_title);1222 $title = esc_attr( get_the_title( $post->ID ) ); 1223 1223 1224 1224 echo ' … … 3323 3323 * 3324 3324 */ 3325 function _draft_or_post_title($post_id = 0) 3326 { 3325 function _draft_or_post_title($post_id = 0) { 3327 3326 $title = get_the_title($post_id); 3328 3327 if ( empty($title) )
Note: See TracChangeset
for help on using the changeset viewer.