Ticket #1660: bp_create_excerpt.2.patch
File bp_create_excerpt.2.patch, 638 bytes (added by , 15 years ago) |
---|
-
bp-core/bp-core-templatetags.php
1086 1086 if ( $filter_shortcodes ) 1087 1087 $text = preg_replace( '|\[(.+?)\](.+?\[/\\1\])?|s', '', $text ); 1088 1088 1089 $words = explode(' ', $text, $excerpt_length + 1); 1089 $words = preg_split( 1090 "%\s*((?:<[^>]+>)+\S*)\s*|\s+%s", 1091 $text, 1092 $excerpt_length + 1, 1093 PREG_SPLIT_NO_EMPTY | PREG_SPLIT_DELIM_CAPTURE 1094 ); 1095 1090 1096 if (count($words) > $excerpt_length) { 1091 1097 array_pop($words); 1092 1098 array_push($words, '[...]');