Make WordPress Core


Ignore:
Timestamp:
05/08/2013 09:27:31 PM (11 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/misc.php

    r24042 r24207  
    224224    $short_url = untrailingslashit( $short_url );
    225225    if ( strlen( $short_url ) > 35 )
    226         $short_url = substr( $short_url, 0, 32 ) . '...';
     226        $short_url = substr( $short_url, 0, 32 ) . '…';
    227227    return $short_url;
    228228}
Note: See TracChangeset for help on using the changeset viewer.