Ticket #45389: 45389.2.patch
| File 45389.2.patch, 556 bytes (added by , 7 years ago) |
|---|
-
wordpress/wp-includes/post.php
diff -Naur wordpress/wp-includes/post.php wordpress/wp-includes/post.php
4394 4394 $excerpt = strip_tags( $postdata['post_excerpt'] ? $postdata['post_excerpt'] : $postdata['post_content'] ); 4395 4395 4396 4396 if ( strlen( $excerpt ) > 255 ) { 4397 $excerpt = substr( $excerpt, 0, 252 ) . '…';4397 $excerpt = mb_substr( $excerpt, 0, 252 ) . '…'; 4398 4398 } 4399 4399 4400 4400 $trackback_urls = explode( ',', $tb_list );