Changeset 4714
- Timestamp:
- 01/25/2013 04:19:01 PM (13 years ago)
- File:
-
- 1 edited
-
trunk/includes/core/filters.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/includes/core/filters.php
r4689 r4714 121 121 122 122 // Run filters on reply content 123 add_filter( 'bbp_get_reply_content', ' wptexturize', 3);124 add_filter( 'bbp_get_reply_content', ' convert_chars', 5);125 add_filter( 'bbp_get_reply_content', ' make_clickable', 9);123 add_filter( 'bbp_get_reply_content', 'make_clickable', 4 ); 124 add_filter( 'bbp_get_reply_content', 'wptexturize', 6 ); 125 add_filter( 'bbp_get_reply_content', 'convert_chars', 8 ); 126 126 add_filter( 'bbp_get_reply_content', 'capital_P_dangit', 10 ); 127 127 add_filter( 'bbp_get_reply_content', 'convert_smilies', 20 ); … … 131 131 132 132 // Run filters on topic content 133 add_filter( 'bbp_get_topic_content', ' wptexturize', 3);134 add_filter( 'bbp_get_topic_content', ' convert_chars', 5);135 add_filter( 'bbp_get_topic_content', ' make_clickable', 9);133 add_filter( 'bbp_get_topic_content', 'make_clickable', 4 ); 134 add_filter( 'bbp_get_topic_content', 'wptexturize', 6 ); 135 add_filter( 'bbp_get_topic_content', 'convert_chars', 8 ); 136 136 add_filter( 'bbp_get_topic_content', 'capital_P_dangit', 10 ); 137 137 add_filter( 'bbp_get_topic_content', 'convert_smilies', 20 );
Note: See TracChangeset
for help on using the changeset viewer.