Make WordPress Core


Ignore:
Timestamp:
05/08/2013 09:27:31 PM (12 years ago)
Author:
SergeyBiryukov
Message:

Use ellipsis instead of three dots. props tjsingleton, jordie23, wojtek.szkutnik, DrewAPicture, SergeyBiryukov. see #8714.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/class-wp-comments-list-table.php

    r24123 r24207  
    457457        $author_url_display = preg_replace( '|http://(www\.)?|i', '', $author_url );
    458458        if ( strlen( $author_url_display ) > 50 )
    459             $author_url_display = substr( $author_url_display, 0, 49 ) . '...';
     459            $author_url_display = substr( $author_url_display, 0, 49 ) . '…';
    460460
    461461        echo "<strong>"; comment_author(); echo '</strong><br />';
Note: See TracChangeset for help on using the changeset viewer.