Changeset 9024

Show
Ignore:
Timestamp:
09/28/08 20:43:08 (2 months ago)
Author:
westi
Message:

Give titleless drafts a title in the quickpress box. Fixes #7801 props Speedboxer.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/wp-admin/includes/dashboard.php

    r9005 r9024  
    380380            $url = get_edit_post_link( $draft->ID ); 
    381381            $title = get_the_title( $draft->ID ); 
     382            if ( empty( $title ) ) 
     383                $title = __('no-title'); 
    382384            $list[] = "<a href='$url' title='" . sprintf( __( 'Edit "%s"' ), attribute_escape( $title ) ) . "'>$title</a>"; 
    383385        }