Changeset 6380 for trunk/src/includes/core/filters.php
- Timestamp:
- 03/17/2017 05:55:58 PM (9 years ago)
- File:
-
- 1 edited
-
trunk/src/includes/core/filters.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/core/filters.php
r6338 r6380 144 144 145 145 // Run filters on reply content 146 add_filter( 'bbp_get_reply_content', ' bbp_make_clickable', 4);147 add_filter( 'bbp_get_reply_content', ' wptexturize', 6);148 add_filter( 'bbp_get_reply_content', 'c onvert_chars', 8);149 add_filter( 'bbp_get_reply_content', 'c apital_P_dangit', 10);150 add_filter( 'bbp_get_reply_content', ' convert_smilies', 20);151 add_filter( 'bbp_get_reply_content', ' force_balance_tags', 30);152 add_filter( 'bbp_get_reply_content', 'wpautop', 40);153 add_filter( 'bbp_get_reply_content', 'bbp_rel_nofollow', 50);146 add_filter( 'bbp_get_reply_content', 'wptexturize', 6 ); 147 add_filter( 'bbp_get_reply_content', 'convert_chars', 8 ); 148 add_filter( 'bbp_get_reply_content', 'capital_P_dangit', 10 ); 149 add_filter( 'bbp_get_reply_content', 'convert_smilies', 20 ); 150 add_filter( 'bbp_get_reply_content', 'force_balance_tags', 30 ); 151 add_filter( 'bbp_get_reply_content', 'bbp_make_clickable', 40 ); 152 add_filter( 'bbp_get_reply_content', 'wpautop', 50 ); 153 add_filter( 'bbp_get_reply_content', 'bbp_rel_nofollow', 60 ); 154 154 155 155 // Run filters on topic content 156 add_filter( 'bbp_get_topic_content', ' bbp_make_clickable', 4);157 add_filter( 'bbp_get_topic_content', ' wptexturize', 6);158 add_filter( 'bbp_get_topic_content', 'c onvert_chars', 8);159 add_filter( 'bbp_get_topic_content', 'c apital_P_dangit', 10);160 add_filter( 'bbp_get_topic_content', ' convert_smilies', 20);161 add_filter( 'bbp_get_topic_content', ' force_balance_tags', 30);162 add_filter( 'bbp_get_topic_content', 'wpautop', 40);163 add_filter( 'bbp_get_topic_content', 'bbp_rel_nofollow', 50);156 add_filter( 'bbp_get_topic_content', 'wptexturize', 6 ); 157 add_filter( 'bbp_get_topic_content', 'convert_chars', 8 ); 158 add_filter( 'bbp_get_topic_content', 'capital_P_dangit', 10 ); 159 add_filter( 'bbp_get_topic_content', 'convert_smilies', 20 ); 160 add_filter( 'bbp_get_topic_content', 'force_balance_tags', 30 ); 161 add_filter( 'bbp_get_topic_content', 'bbp_make_clickable', 40 ); 162 add_filter( 'bbp_get_topic_content', 'wpautop', 50 ); 163 add_filter( 'bbp_get_topic_content', 'bbp_rel_nofollow', 60 ); 164 164 165 165 // Form textarea output - undo the code-trick done pre-save, and sanitize
Note: See TracChangeset
for help on using the changeset viewer.