Skip to:
Content

BuddyPress.org

Changeset 1193


Ignore:
Timestamp:
03/09/2009 10:14:46 PM (16 years ago)
Author:
apeatling
Message:

Fixes #516

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-activity/bp-activity-templatetags.php

    r1192 r1193  
    221221
    222222    $title = explode( '<span', $activities_template->activity['content'] );
    223     echo apply_filters( 'bp_activity_feed_item_title', trim( strip_tags( $title[0] ) ) );
     223    echo apply_filters( 'bp_activity_feed_item_title', trim( strip_tags( html_entity_decode( $title[0] ) ) ) );
    224224}
    225225
     
    239239    global $activities_template;
    240240
    241     echo apply_filters( 'bp_activity_feed_item_description', sprintf( $activities_template->activity['content'], '' ) );   
     241    echo apply_filters( 'bp_activity_feed_item_description', sprintf( html_entity_decode( $activities_template->activity['content'], '' ) ) ); 
    242242}
    243243
Note: See TracChangeset for help on using the changeset viewer.