Skip to:
Content

bbPress.org


Ignore:
Timestamp:
04/15/2015 03:06:31 PM (11 years ago)
Author:
johnjamesjacoby
Message:

General: Use sanitize_text_field() in lieu of old-bbPress style pre-escaping technique.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/includes/core/filters.php

    r5559 r5684  
    9292add_filter( 'bbp_get_forum_permalink', 'bbp_add_view_all' );
    9393
    94 // wp_filter_kses on new/edit topic/reply title
     94// wp_filter_kses on new/edit forum/topic/reply title
     95add_filter( 'bbp_new_forum_pre_title',  'wp_filter_kses'  );
    9596add_filter( 'bbp_new_reply_pre_title',  'wp_filter_kses'  );
    9697add_filter( 'bbp_new_topic_pre_title',  'wp_filter_kses'  );
     98add_filter( 'bbp_edit_forum_pre_title', 'wp_filter_kses'  );
    9799add_filter( 'bbp_edit_reply_pre_title', 'wp_filter_kses'  );
    98100add_filter( 'bbp_edit_topic_pre_title', 'wp_filter_kses'  );
Note: See TracChangeset for help on using the changeset viewer.