Opened 7 years ago
Closed 7 years ago
#3170 closed defect (bug) (fixed)
bbp_get_topic_excerpt wrong result of multibyte string
Reported by: | it4life | Owned by: | johnjamesjacoby |
---|---|---|---|
Milestone: | 2.6 | Priority: | normal |
Severity: | normal | Version: | 2.5.14 |
Component: | General | Keywords: | needs-patch good-first-bug |
Cc: |
Description
The function bbp_get_topic_excerpt
is currently using substr
which does not support multibyte string. So the excerpt may have invalid character.
E.g. Topic content:
Khi đăng ký thành viên, một Email kích hoạt và đặt mật khẩu sẽ được gửi đến địa chỉ Mail của các bạn.
Result of bbp_get_topic_excerpt
:
Khi đăng ký thành viên, một Email kích hoạt và đặt mật khẩu sẽ được gửi �…
Suggest edit: using mb_substr
<?php if ( function_exists( 'mb_substr' ) ) { $excerpt = mb_substr( $excerpt, 0, $length - 1 ); } else { $excerpt = substr( $excerpt, 0, $length - 1 ); }
Thanks!
Change History (3)
#1
@
7 years ago
- Keywords needs-patch good-first-bug added
- Milestone changed from Awaiting Review to 2.6
- Owner set to johnjamesjacoby
Note: See
TracTickets for help on using
tickets.
This should use the multibyte equivalent.