Make WordPress Core

Ticket #31482: 31482.diff

File 31482.diff, 923 bytes (added by kraftbj, 10 years ago)

Adds non-breaking space

  • src/wp-admin/includes/class-wp-comments-list-table.php

     
    481481
    482482                                $format = '<a data-comment-id="%d" data-post-id="%d" data-action="%s" class="%s" title="%s" href="#">%s</a>';
    483483
    484                                 $actions['quickedit'] = sprintf( $format, $comment->comment_ID, $post->ID, 'edit', 'vim-q comment-inline', esc_attr__( 'Quick Edit' ), __( 'Quick Edit' ) );
     484                                $actions['quickedit'] = sprintf( $format, $comment->comment_ID, $post->ID, 'edit', 'vim-q comment-inline', esc_attr__( 'Quick Edit' ), __( 'Quick&nbsp;Edit' ) );
    485485
    486486                                $actions['reply'] = sprintf( $format, $comment->comment_ID, $post->ID, 'replyto', 'vim-r comment-inline', esc_attr__( 'Reply to this comment' ), __( 'Reply' ) );
    487487                        }