Skip to:
Content

bbPress.org

Changeset 4714


Ignore:
Timestamp:
01/25/2013 04:19:01 PM (13 years ago)
Author:
johnjamesjacoby
Message:

Improve usage of make_clickable filter on topic and reply content. Fixes #2149.

File:
1 edited

Legend:

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

    r4689 r4714  
    121121
    122122// 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    );
     123add_filter( 'bbp_get_reply_content', 'make_clickable',     4    );
     124add_filter( 'bbp_get_reply_content', 'wptexturize',        6    );
     125add_filter( 'bbp_get_reply_content', 'convert_chars',      8    );
    126126add_filter( 'bbp_get_reply_content', 'capital_P_dangit',   10   );
    127127add_filter( 'bbp_get_reply_content', 'convert_smilies',    20   );
     
    131131
    132132// 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    );
     133add_filter( 'bbp_get_topic_content', 'make_clickable',     4    );
     134add_filter( 'bbp_get_topic_content', 'wptexturize',        6    );
     135add_filter( 'bbp_get_topic_content', 'convert_chars',      8    );
    136136add_filter( 'bbp_get_topic_content', 'capital_P_dangit',   10   );
    137137add_filter( 'bbp_get_topic_content', 'convert_smilies',    20   );
Note: See TracChangeset for help on using the changeset viewer.