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-topic-template.php

    r2787 r2788  
    285285 * @param string $filter Optional Sanitation filter. See {@link sanitize_post()}
    286286 * @uses get_post() To get the topic
     287 * @uses apply_filters() Calls 'bbp_get_topic' with the topic, output type and
     288 *                        sanitation filter
    287289 * @return mixed Null if error or topic (in specified form) if success
    288290 */
     
    312314    }
    313315
    314     return $topic;
     316    return apply_filters( 'bbp_get_topic', $topic, $output, $filter );
    315317}
    316318
Note: See TracChangeset for help on using the changeset viewer.