Changeset 10183 for trunk/src/bp-forums/bp-forums-filters.php
- Timestamp:
- 10/04/2015 07:29:24 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-forums/bp-forums-filters.php
r10096 r10183 98 98 * Get a link for a forum topic tags directory. 99 99 * 100 * @param string $link Link passed from filter.101 * @param string $tag Name of the tag.102 * @param string $page Page number, passed from the filter.100 * @param string $link Link passed from filter. 101 * @param string $tag Name of the tag. 102 * @param string $page Page number, passed from the filter. 103 103 * @param string $context Passed from the filter but unused here. 104 104 * @return string Link of the form http://example.com/forums/tag/tagname/. … … 142 142 * @see bp_modify_page_title() 143 143 * 144 * @param string $title New page title; see {@link bp_modify_page_title()}.144 * @param string $title New page title; see {@link bp_modify_page_title()}. 145 145 * @param string $original_title Original page title. 146 * @param string $sep How to separate the various items within the page title.147 * @param string $seplocation Direction to display title.146 * @param string $sep How to separate the various items within the page title. 147 * @param string $seplocation Direction to display title. 148 148 * @return string Page title with forum topic title appended. 149 149 */ … … 232 232 $sql .= $wpdb->prepare( " AND p.poster_id = %s ", bp_displayed_user_id() ); 233 233 234 // Remove any topic_author information 234 // Remove any topic_author information. 235 235 $sql = str_replace( " AND t.topic_poster = '" . bp_displayed_user_id() . "'", '', $sql ); 236 236
Note: See TracChangeset
for help on using the changeset viewer.