Use the correct (no-title) string. Fixes #7801 props Speedboxer.

git-svn-id: http://svn.automattic.com/wordpress/trunk@9027 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
westi 2008-09-29 06:32:37 +00:00
parent 42aaa50b6f
commit 902f570a18
1 changed files with 1 additions and 1 deletions

View File

@ -380,7 +380,7 @@ function wp_dashboard_quick_press( $sidebar_args ) {
$url = get_edit_post_link( $draft->ID );
$title = get_the_title( $draft->ID );
if ( empty( $title ) )
$title = __('no-title');
$title = __('(no-title)');
$list[] = "<a href='$url' title='" . sprintf( __( 'Edit "%s"' ), attribute_escape( $title ) ) . "'>$title</a>";
}
?>