Changeset 4689 for trunk/includes/core/filters.php
- Timestamp:
- 01/08/2013 03:54:26 PM (13 years ago)
- File:
-
- 1 edited
-
trunk/includes/core/filters.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/includes/core/filters.php
r4679 r4689 158 158 add_filter( 'bbp_edit_topic_pre_content', 'bbp_code_trick_reverse' ); 159 159 160 // Code filters on output 161 add_filter( 'bbp_get_reply_content', 'bbp_code_trick' );162 add_filter( 'bbp_get_reply_content', 'bbp_encode_bad' );163 add_filter( 'bbp_get_topic_content', 'bbp_code_trick' );164 add_filter( 'bbp_get_topic_content', 'bbp_encode_bad' );160 // Code filters on output (hooked in early for plugin compatibility) 161 add_filter( 'bbp_get_reply_content', 'bbp_code_trick', 4 ); 162 add_filter( 'bbp_get_reply_content', 'bbp_encode_bad', 6 ); 163 add_filter( 'bbp_get_topic_content', 'bbp_code_trick', 4 ); 164 add_filter( 'bbp_get_topic_content', 'bbp_encode_bad', 6 ); 165 165 166 166 // Run wp_kses_data on topic/reply content in admin section
Note: See TracChangeset
for help on using the changeset viewer.