Opened 15 years ago
Closed 14 years ago
#1410 closed defect (bug) (fixed)
Groups - excerpt makes invalid links - has-patch
Reported by: | petronic | Owned by: | |
---|---|---|---|
Milestone: | 1.2.4 | Priority: | major |
Severity: | Version: | ||
Component: | Core | Keywords: | |
Cc: | petronic |
Description
When you add URL in group description, then excerpt in groups directory listing and in random group makes invalid links.
For example, I added this text as group description:
Test link
http://pcgames.de
From that, excerpt makes:
Test link
<br/>
<a href="\"http://pcgames.de\"">http://pcgames.de</a>
You can see example here:
http://testbp.org/groups/?s=Test+-+Link+in+description
Problem is in doing double "wp_filter_kses" since bp_the_site_group_description_excerpt() calls
bp_get_group_description()
and on both "wp_filter_kses" filter is applied:
add_filter( 'bp_get_group_description', 'wp_filter_kses', 1 );
add_filter( 'bp_get_the_site_group_description_excerpt', 'wp_filter_kses', 1 );
Fixed in 1.2.