Skip to:
Content

bbPress.org

Changeset 3255


Ignore:
Timestamp:
05/28/2011 01:25:10 PM (14 years ago)
Author:
johnjamesjacoby
Message:

Add just in time filtering to topic terms when saving and editing a reply.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/plugin/bbp-includes/bbp-reply-functions.php

    r3243 r3255  
    269269
    270270                /** Topic Tags ************************************************/
     271
     272                // Just in time manipulation of reply terms before being edited
     273                $terms = apply_filters( 'bbp_new_reply_pre_set_terms', $terms, $topic_id );
    271274
    272275                // Insert terms
     
    484487
    485488            /** Topic Tags ************************************************/
     489
     490            // Just in time manipulation of reply terms before being edited
     491            $terms = apply_filters( 'bbp_edit_reply_pre_set_terms', $terms, $topic_id );
    486492
    487493            // Insert terms
Note: See TracChangeset for help on using the changeset viewer.