Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
10/04/2015 07:29:24 AM (9 years ago)
Author:
tw2113
Message:

Initial documentation cleanup for the BP Forums Component.

See #6397.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-forums/bp-forums-filters.php

    r10096 r10183  
    9898 * Get a link for a forum topic tags directory.
    9999 *
    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.
    103103 * @param string $context Passed from the filter but unused here.
    104104 * @return string Link of the form http://example.com/forums/tag/tagname/.
     
    142142 * @see bp_modify_page_title()
    143143 *
    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()}.
    145145 * @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.
    148148 * @return string Page title with forum topic title appended.
    149149 */
     
    232232    $sql .= $wpdb->prepare( " AND p.poster_id = %s ", bp_displayed_user_id() );
    233233
    234     // Remove any topic_author information
     234    // Remove any topic_author information.
    235235    $sql = str_replace( " AND t.topic_poster = '" . bp_displayed_user_id() . "'", '', $sql );
    236236
Note: See TracChangeset for help on using the changeset viewer.