Skip to:
Content

bbPress.org


Ignore:
Timestamp:
06/04/2017 10:04:34 PM (7 years ago)
Author:
johnjamesjacoby
Message:

Filters: Pass original $args array into various filters.

These were all unintentionally omitted when these filters were introduced.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/includes/replies/template.php

    r6438 r6487  
    13611361
    13621362        // Filter & return
    1363         return apply_filters( 'bbp_get_reply_author_link', $author_link, $r );
     1363        return apply_filters( 'bbp_get_reply_author_link', $author_link, $r, $args );
    13641364    }
    13651365
     
    15111511
    15121512        // Filter & return
    1513         return apply_filters( 'bbp_get_reply_author_role', $author_role, $r );
     1513        return apply_filters( 'bbp_get_reply_author_role', $author_role, $r, $args );
    15141514    }
    15151515
     
    29512951
    29522952        // Filter & return
    2953         return apply_filters( 'bbp_get_form_reply_status_dropdown', ob_get_clean(), $r );
     2953        return apply_filters( 'bbp_get_form_reply_status_dropdown', ob_get_clean(), $r, $args );
    29542954    }
    29552955
Note: See TracChangeset for help on using the changeset viewer.