Plugin Directory

Changeset 692852


Ignore:
Timestamp:
04/06/2013 08:51:42 PM (13 years ago)
Author:
antonchanning
Message:

Fixes bug with Activity stream.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • bbpress-bbcode/trunk/class_bbpress2-bbcode.php

    r692813 r692852  
    7878            add_filter( 'get_comment_text', 'do_shortcode' ); //Warning, doing it this way adds ALL shortcodes to forum topics
    7979            add_filter( 'bbp_get_reply_content', 'do_shortcode' ); //Warning, doing it this way adds ALL shortcodes to forum replies
    80             add_filter( 'bp_get_activity_content_body', 'do_shortcode' ); //Warning, doing it this way adds ALL shortcodes to forum replies
    81             add_filter( 'bp_get_the_topic_post_content', 'do_shortcode' ); //Warning, doing it this way adds ALL shortcodes to forum replies
     80            add_filter( 'bp_get_activity_content_body', 'do_shortcode', 1 ); //Warning, doing it this way adds ALL shortcodes to activity stream
     81            add_filter( 'bp_get_the_topic_post_content', 'do_shortcode' ); //Warning, doing it this way adds ALL shortcodes to group forum posts
    8282        }
    8383    }
Note: See TracChangeset for help on using the changeset viewer.