Changeset 6296 for trunk/src/includes/core/filters.php
- Timestamp:
- 02/21/2017 06:19:56 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/core/filters.php
r6248 r6296 191 191 add_filter( 'bbp_get_form_reply_to', 'absint' ); 192 192 193 // Add number format filter to functions requ iring numeric output193 // Add number format filter to functions requesting formatted values 194 194 add_filter( 'bbp_get_user_topic_count', 'bbp_number_format', 10 ); 195 195 add_filter( 'bbp_get_user_reply_count', 'bbp_number_format', 10 ); … … 202 202 add_filter( 'bbp_get_topic_reply_count', 'bbp_number_format', 10 ); 203 203 add_filter( 'bbp_get_topic_post_count', 'bbp_number_format', 10 ); 204 add_filter( 'bbp_get_topic_revision_count', 'bbp_number_format', 10 ); 205 add_filter( 'bbp_get_reply_revision_count', 'bbp_number_format', 10 ); 204 206 add_filter( 'bbp_get_forum_topic_count_hidden', 'bbp_number_format', 10 ); 205 207 add_filter( 'bbp_get_topic_reply_count_hidden', 'bbp_number_format', 10 ); 208 209 // Add absint filter to functions expecting absolute values 210 add_filter( 'bbp_get_user_topic_count_int', 'intval', 10 ); 211 add_filter( 'bbp_get_user_reply_count_int', 'absint', 10 ); 212 add_filter( 'bbp_get_user_post_count_int', 'absint', 10 ); 213 add_filter( 'bbp_get_forum_subforum_count_int', 'absint', 10 ); 214 add_filter( 'bbp_get_forum_topic_count_int', 'absint', 10 ); 215 add_filter( 'bbp_get_forum_reply_count_int', 'absint', 10 ); 216 add_filter( 'bbp_get_forum_post_count_int', 'absint', 10 ); 217 add_filter( 'bbp_get_topic_voice_count_int', 'absint', 10 ); 218 add_filter( 'bbp_get_topic_reply_count_int', 'absint', 10 ); 219 add_filter( 'bbp_get_topic_post_count_int', 'absint', 10 ); 220 add_filter( 'bbp_get_forum_topic_count_hidden_int', 'absint', 10 ); 221 add_filter( 'bbp_get_topic_reply_count_hidden_int', 'absint', 10 ); 206 222 207 223 // Sanitize displayed user data
Note: See TracChangeset
for help on using the changeset viewer.