Ticket #45389: 45389.patch
| File 45389.patch, 541 bytes (added by , 7 years ago) |
|---|
-
src/wp-includes/post.php
4546 4546 $excerpt = strip_tags( $postdata['post_excerpt'] ? $postdata['post_excerpt'] : $postdata['post_content'] ); 4547 4547 4548 4548 if ( strlen( $excerpt ) > 255 ) { 4549 $excerpt = substr( $excerpt, 0, 252 ) . '…';4549 $excerpt = mb_strcut( $excerpt, 0, 252 ) . '…'; 4550 4550 } 4551 4551 4552 4552 $trackback_urls = explode( ',', $tb_list );