Skip to:
Content

bbPress.org


Ignore:
Timestamp:
01/09/2011 09:19:26 PM (14 years ago)
Author:
johnjamesjacoby
Message:

Better handling of title attributes. Props GautamGupta via Google Code-in

File:
1 edited

Legend:

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

    r2787 r2788  
    185185 * @param string $filter Optional Sanitation filter. See {@link sanitize_post()}
    186186 * @uses get_post() To get the reply
     187 * @uses apply_filters() Calls 'bbp_get_reply' with the reply, output type and
     188 *                        sanitation filter
    187189 * @return mixed Null if error or reply (in specified form) if success
    188190 */
     
    212214    }
    213215
    214     return $reply;
     216    return apply_filters( 'bbp_get_reply', $reply, $output, $filter );
    215217}
    216218
Note: See TracChangeset for help on using the changeset viewer.