Changeset 9078 for trunk/wp-admin/includes/dashboard.php
- Timestamp:
- 10/03/2008 03:56:35 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/dashboard.php
r9027 r9078 379 379 foreach ( $drafts_query->posts as $draft ) { 380 380 $url = get_edit_post_link( $draft->ID ); 381 $title = get_the_title( $draft->ID ); 382 if ( empty( $title ) ) 383 $title = __('(no-title)'); 381 $title = _draft_or_post_title( $draft->ID ); 384 382 $list[] = "<a href='$url' title='" . sprintf( __( 'Edit "%s"' ), attribute_escape( $title ) ) . "'>$title</a>"; 385 383 }
Note: See TracChangeset
for help on using the changeset viewer.